annotate Gui/skin/cut.h @ 19060:b508e7ef1ea8
Some systems[1] list the 970 as PPC970 on /proc/cpuinfo, so add support
for this.
[1] namely the PPC64 machine over at powerdev.osuosl.org
author |
gpoirier |
date |
Thu, 13 Jul 2006 13:28:56 +0000 |
parents |
58dd326fcc4a |
children |
|
rev |
line source |
1693
|
1
|
1852
|
2 #ifndef _CUT_H
|
|
3 #define _CUT_H
|
1693
|
4
|
1852
|
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 );
|
1693
|
9
|
1852
|
10 #endif
|