remove vt prefixes

This commit is contained in:
Mitchell Hashimoto
2025-09-24 12:36:45 -07:00
parent 96e9053862
commit 37e238c2f6
4 changed files with 20 additions and 20 deletions

View File

@@ -3,9 +3,9 @@
int main() {
GhosttyOscParser parser;
if (ghostty_vt_osc_new(NULL, &parser) != GHOSTTY_VT_SUCCESS) {
if (ghostty_osc_new(NULL, &parser) != GHOSTTY_SUCCESS) {
return 1;
}
ghostty_vt_osc_free(parser);
ghostty_osc_free(parser);
return 0;
}