X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Finigo%2Fio.c;fp=src%2Finigo%2Fio.c;h=06acc3780b59744aa0e141a20defe5f48485f448;hb=e7aef2a74556095c076f41ba1910ce8c83a09bda;hp=271f771d1368f7315ffbbb412a22642432562baf;hpb=682bf9045efabb2c752a5f7556901d720de9b9c6;p=melted diff --git a/src/inigo/io.c b/src/inigo/io.c index 271f771..06acc37 100644 --- a/src/inigo/io.c +++ b/src/inigo/io.c @@ -76,19 +76,6 @@ char *strip_quotes( char *input ) return input; } -char *get_string( char *output, int maxlength, char *use ) -{ - char *value = NULL; - strcpy( output, use ); - if ( trim( chomp( fgets( output, maxlength, stdin ) ) ) != NULL ) - { - if ( !strcmp( output, "" ) ) - strcpy( output, use ); - value = output; - } - return value; -} - int *get_int( int *output, int use ) { int *value = NULL;