#include #include #include "conio.h" #include #include char *gets(char* str) { con_init(); if(con_gets(str, STDIO_MAX_MEM)==NULL){ errno = EIO; return NULL; } int str_len = strlen(str); if(str[str_len-1]=='\n'){ str[str_len-1]='\0'; } return str; }