mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-01-02 19:42:38 +00:00
10 lines
167 B
C
10 lines
167 B
C
#include <stddef.h>
|
|
#include <ghostty-vt.h>
|
|
|
|
int main() {
|
|
GhosttyOscParser parser;
|
|
ghostty_vt_osc_new(NULL, &parser);
|
|
ghostty_vt_osc_free(parser);
|
|
return 0;
|
|
}
|