Files
ghostty/example/c-vt/src/main.c
Mitchell Hashimoto 37e238c2f6 remove vt prefixes
2025-09-24 12:36:50 -07:00

12 lines
204 B
C

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