[MOD] Fix quotes a bit

This commit is contained in:
LDA 2024-08-01 18:30:08 +02:00
commit b7d2ea8a43
3 changed files with 64 additions and 39 deletions

View file

@ -38,14 +38,14 @@ extern StringRect StrFullRect(char **split);
* --------------
* Returns: A character at {line}, {col} in C-indices | '\0'
* Modifies: NOTHING */
extern char StrGet(StringRect rect, int line, int col);
extern char StrGet(StringRect *rect, int line, int col);
/**
* Retrieves a line from a string rectview, or a NULL one
* --------------
* Returns: A stringview that lives along the original
* Modifies: NOTHING */
extern StringRect StrGetl(StringRect rect, int line, bool extend);
extern StringRect StrGetl(StringRect *rect, int line, bool extend);
/**
* Returns a new stringrect, shifted by N chars.