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

35 lines
401 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 <street.h>
void address_someMethod( address * this ) {
}
address address_new() {
address instance;
instance.__classIndex = 19;
return instance;
}
address * address_newPointer() {
struct address * pointer = malloc( sizeof ( struct address ) );
pointer->__classIndex = 19;
return pointer;
}