Files
c-prime/application/demos/example.opengl/int.c

22 lines
301 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 <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;
}