source: MondoRescue/branches/2.2.5/mondo/src/common/mr_string.h@ 1647

Last change on this file since 1647 was 831, checked in by andree, 18 years ago

Add new header mr_string.h for mr_string.c. Use mr_strtok() from
mr_string.c and delete from libmondo-string.c. Add mr_string.c and
mr_string.h to Makefile.am. (Follow-up to r828.)

File size: 293 bytes
Line 
1/*
2 * mr_string.h - New generation of string handling functions
3 */
4
5
6#ifndef MR_STRING_H
7#define MR_STRING_H
8
9/* functions (public methods) */
10
11extern char *mr_strtok(char *instr, const char *delims, int *lastpos);
12extern char *mr_stresc(char *instr, char *toesc, const char escchr);
13
14#endif
Note: See TracBrowser for help on using the repository browser.