Files
ghostty/example/c-vt/src/main.c
2025-09-24 12:30:37 -07:00

12 lines
213 B
C

#include <stddef.h>
#include <ghostty/vt.h>
int main() {
GhosttyOscParser parser;
if (ghostty_vt_osc_new(NULL, &parser) != GHOSTTY_VT_SUCCESS) {
return 1;
}
ghostty_vt_osc_free(parser);
return 0;
}