mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
12 lines
332 B
C
12 lines
332 B
C
#ifndef __LINUX_LIB_H_
|
|
#define __LINUX_LIB_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
void _splitpath(const char *path, char *drive, char *dir, char *fname, char *ext);
|
|
int _vsnprintf(char *buffer, size_t count, const char *format, va_list argptr);
|
|
int stricmp(const char *string1, const char *string2);
|
|
|
|
#endif |