/* mr_string.h * * $Id$ * * Header file of mr_string: a set of function manipulating strings * Provided under the GPL v2 */ #ifndef MR_STRING_H #define MR_STRING_H /* functions (public methods) */ extern char *mr_strtok(char *instr, const char *delims, int *lastpos); extern char *mr_stresc(char *instr, char *toesc, const char escchr); #endif /* MR_STRING_H */