diff options
| author | FreeArtMan <dos21h@gmail.com> | 2019-08-17 13:05:01 +0100 | 
|---|---|---|
| committer | FreeArtMan <dos21h@gmail.com> | 2019-08-17 13:05:01 +0100 | 
| commit | 5483357fa0c2cceb4ed449bd14874c320ccb90a3 (patch) | |
| tree | 076b9ffdf7acedfe4ffa7e2396501f83efe28bd9 | |
| parent | fd8a16dfd20096092538d58ea7842469ad685e75 (diff) | |
| download | ihe-5483357fa0c2cceb4ed449bd14874c320ccb90a3.tar.gz ihe-5483357fa0c2cceb4ed449bd14874c320ccb90a3.zip  | |
Non working compilable version
| -rw-r--r-- | ihe.c | 7 | 
1 files changed, 7 insertions, 0 deletions
@@ -130,12 +130,16 @@ int cmd_tab_autocomplete( char *in_buf )  	memset( &tl, 0, sizeof( cmd_tok_t ));  	int i; +  	//printf("[%s]\n", in_buf); +	#warning "Fix this" +	/*  	if ( parse_cmd( ptr, in_buf) == -1)  	{  		printf("Cmd problems\n");  		return -1;  	} +	*/  	iter = ptr->next;  	args = cmd_arg_create( iter ); @@ -527,10 +531,13 @@ int main( int argc, char **argv )  			cmd_in.buf[cmd_in.cur_sz] = '\n';  			cmd_in.buf[cmd_in.cur_sz+1]   = 0; +			#warning "Fix this" +			/*  			if ( parse_cmd( ptr, cmd_in.buf) == -1)  			{  				continue;  			} +			*/  			iter = ptr->next;  			args = cmd_arg_create( iter );  | 
