2007-05-30 Mukund Sivaraman <muks@mukund.org> * plug-ins/script-fu/re/split.c * plug-ins/script-fu/re/split.h * plug-ins/script-fu/re/main.c * plug-ins/script-fu/re/Makefile.am: Created a header file (split.h) and added a prototype for split(). svn path=/trunk/; revision=22661
8 lines
122 B
C
8 lines
122 B
C
|
|
#ifndef __RE_SPLIT_H__
|
|
#define __RE_SPLIT_H__
|
|
|
|
int split (char *string, char *fields[], int nfields, char *sep);
|
|
|
|
#endif
|