removing chsmack
[platform/core/system/sdbd.git] / src / strutils.h
1 #ifndef _STRUTILS_H_
2 #define _STRUTILS_H_
3
4 #define MAX_TOKENS 30
5
6 size_t tokenize(const char *str, const char *delim, char *tokens[], size_t max_tokens);
7 void free_strings(char **array, int n);
8 int read_line(const int fd, char* ptr, const unsigned int maxlen);
9
10 #endif
11