diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-12-30 15:30:19 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-12-30 15:30:19 -0800 |
| commit | a07da1989d7ec515d4bb08051ea6940960577446 (patch) | |
| tree | 6f506818554fc205ddcc46a3c9bfe6054ae9cea7 /utils.h | |
| parent | 7d4bc36949cec8e5c791c352a264cd1dea4f8a1e (diff) | |
Simplified syntax for replacement: just =>, no need for {}
Diffstat (limited to 'utils.h')
| -rw-r--r-- | utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,8 @@ const char *after_spaces(const char *str); __attribute__((nonnull)) int matchchar(const char **str, char c); __attribute__((nonnull)) +int matchstr(const char **str, const char *target); +__attribute__((nonnull)) size_t unescape_string(char *dest, const char *src, size_t bufsize); void *memcheck(void *p); int memicmp(const void *s1, const void *s2, size_t n); |
