debugger-cli 0.1.3

LLM-friendly debugger CLI using the Debug Adapter Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Multi-source project utilities implementation
#include "utils.h"

int helper_add(int a, int b) {
    // BREAKPOINT_MARKER: helper_add_body
    int result = a + b;
    return result;
}

int helper_multiply(int a, int b) {
    // BREAKPOINT_MARKER: helper_multiply_body
    int result = a * b;
    return result;
}