diff options
Diffstat (limited to 'example/c-vt/src/main.c')
| -rw-r--r-- | example/c-vt/src/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/example/c-vt/src/main.c b/example/c-vt/src/main.c index 45269d1d4..406e617b6 100644 --- a/example/c-vt/src/main.c +++ b/example/c-vt/src/main.c @@ -1,3 +1,9 @@ +#include <stddef.h> +#include <ghostty-vt.h> + int main() { - return 42; + GhosttyOscParser parser; + ghostty_vt_osc_new(NULL, &parser); + ghostty_vt_osc_free(parser); + return 0; } |
