/* * $Id$ * * Header file of mr_str.c: a set of function manipulating strings * Provided under the GPL v2 */ #ifndef MR_STR_H #define MR_STR_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_STR_H */