mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-09-29 14:38:35 +00:00
12 lines
213 B
C
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;
|
|
}
|