/*
 * $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

/* Constants for mr_stresc */
#define WILDCHARS	"[]*?"
#define BACKSLASH	'\\'

/* 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);
extern inline char *mr_date(void);
extern void mr_strip_spaces(char *in_out);

#endif							/* MR_STR_H */
