grafX2/linux.h
Yves Rizoud dd984538bf Removed some old DOS code, unified (for gcc) the handling of file paths.
Probably fixed some linux issues there.
Fixed the filename search by typing in Save/load.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@196 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2008-10-04 21:56:02 +00:00

19 lines
226 B
C

#ifndef _LINUX_H_
#define _LINUX_H_
#ifdef __linux__
struct find_t {
unsigned char attrib;
char name[256];
};
int filelength(int);
void itoa(int source,char* dest, int longueur);
/* Integer TO Ascii */
#endif
#endif