mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-09-26 21:18:37 +00:00
12 lines
204 B
C
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;
|
|
}
|