annotate gui/skin/cut.h @ 23080:814564d496ff
r19039 was missed in first sync (r19631). fixed.
two typos fixed
author |
voroshil |
date |
Mon, 23 Apr 2007 10:26:05 +0000 |
parents |
17bf4f4b0715 |
children |
f15bce7943b9 |
rev |
line source |
23077
|
1
|
|
2 #ifndef _CUT_H
|
|
3 #define _CUT_H
|
|
4
|
|
5 extern void cutItem( char * in,char * out,char sep,int num );
|
|
6 extern int cutItemToInt( char * in,char sep,int num );
|
|
7 extern float cutItemToFloat( char * in,char sep,int num );
|
|
8 extern void cutChunk( char * in,char * s1 );
|
|
9
|
|
10 #endif
|