/* 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);

#endif							/* MR_STRING_H */
