blob: f8ea2a9e5a177e03f77b1534d55c694990cd75d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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;
}
|