grafX2/linux.h
Yves Rizoud 2a66650568 Removed a "#pragma once", made Makefile.dep be the same on all platforms.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@162 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2008-09-25 13:51:50 +00:00

22 lines
374 B
C

#ifndef _LINUX_H_
#define _LINUX_H_
#ifdef __linux__
void _splitpath(char* Buffer, char* Chemin, char* Nom_Fichier);
/* Sépare dans la chaîne passée dans Buffer le chemin d'accès du nom de fichier */
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