|
Last change
on this file since 3301 was 3193, checked in by Bruno Cornec, 12 years ago |
- Finish with backports from 3.1 for now. Still some work to do, but we
will now make that version compile and work again and serve as a base
so the gettext patch can be added
|
-
Property svn:eol-style
set to
native
|
|
File size:
638 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * $Id$
|
|---|
| 3 | *
|
|---|
| 4 | * Header file of mr_str.c: a set of function manipulating strings
|
|---|
| 5 | * Provided under the GPL v2
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef MR_STR_H
|
|---|
| 9 | #define MR_STR_H
|
|---|
| 10 |
|
|---|
| 11 | /* Constants for mr_stresc */
|
|---|
| 12 | #define WILDCHARS "[]*?"
|
|---|
| 13 | #define BACKSLASH '\\'
|
|---|
| 14 |
|
|---|
| 15 | /* functions (public methods) */
|
|---|
| 16 |
|
|---|
| 17 | extern char *mr_strtok(char *instr, const char *delims, int *lastpos);
|
|---|
| 18 | extern char *mr_stresc(char *instr, char *toesc, const char escchr, const char specialchr);
|
|---|
| 19 | extern inline char *mr_date(void);
|
|---|
| 20 | extern void mr_strip_spaces(char *in_out);
|
|---|
| 21 | /*
|
|---|
| 22 | extern void mr_strip_char(char *in_out, char *caracs);
|
|---|
| 23 | extern void mr_chomp(char *in_out);
|
|---|
| 24 | */
|
|---|
| 25 |
|
|---|
| 26 | #endif /* MR_STR_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.