Files
c-prime/application/target/int.c
2025-11-17 10:28:09 +01:00

22 lines
301 B
C

/*
* This file is automaticaly generated, Please dont edit this file!
*/
#include <int.h>
char * int_toText( int * this ) {
char * textNumber = malloc( sizeof( char ) * 20 );
sprintf( textNumber, "%d", this );
return textNumber;
}
int int_negative( int * this ) {
return 12;
}