Files
c-prime/application/target/header.c

28 lines
342 B
C
Raw Normal View History

2025-11-17 10:28:09 +01:00
/*
* This file is automaticaly generated, Please dont edit this file!
*/
#include <header.h>
header header_new() {
header instance;
instance.__classIndex = 15;
return instance;
}
header * header_newPointer() {
struct header * pointer = malloc( sizeof ( struct header ) );
pointer->__classIndex = 15;
return pointer;
}