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

24 lines
266 B
C

/*
* This file is automaticaly generated, Please dont edit this file!
*/
#include <file.h>
file file_new() {
file instance;
return instance;
}
file * file_newPointer() {
struct file * pointer = malloc( sizeof ( struct file ) );
return pointer;
}