Ejemplo n.º 1
0
void
print_string( FILE *fp, const byte *p, size_t n, int delim )
{
  print_string2(fp,p,n,delim,0);
}
Ejemplo n.º 2
0
void show_message(int cursor_x, int cursor_y, char str[]){
	//print_string(&cursor_x,&cursor_y, str);
	print_string2(cursor_x,cursor_y, str);
}