/*
 * $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 inline char *mr_strtok(char *instr, const char *delims, int *lastpos);
extern inline char *mr_stresc(char *instr, char *toesc, const char escchr);
extern inline char *mr_date(void);

#endif							/* MR_STR_H */
