Files
c-prime/application/demos/example.opengl/file.h
2025-11-17 10:28:09 +01:00

40 lines
286 B
C

#ifndef _file
#define _file
// Macros
#include "stdlib.h"
extern char * __ClassNames[];
// Includes
#include "text.h"
typedef struct file{
char * filePath;
text * content;
} file;
file file_new( );
file * file_newPointer( );
#endif
typedef struct file file;