Initial commit
This commit is contained in:
21
application/target/int.c
Normal file
21
application/target/int.c
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* 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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user