diff options
Diffstat (limited to 'RetoolingForOpenSprints/serproxy-0.1.3.src/string.h')
| -rw-r--r-- | RetoolingForOpenSprints/serproxy-0.1.3.src/string.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/RetoolingForOpenSprints/serproxy-0.1.3.src/string.h b/RetoolingForOpenSprints/serproxy-0.1.3.src/string.h new file mode 100644 index 0000000..64d8ecb --- /dev/null +++ b/RetoolingForOpenSprints/serproxy-0.1.3.src/string.h @@ -0,0 +1,9 @@ +#ifndef STRING_H +#define STRING_H + +int str_assign(char **pstr, char *text); +int str_cat(char **pstr, char *text); +int str_striptrail(char *str); +void str_cleanup(char **pstr); + +#endif /* STRING_H */ |
