printString
sop4618_SSourcesop4618_SprintString
Description Source Call Graph
Start Line: 290
void sop4618_S::printString(String s)
{
  if(!str.length())
    return; 
  char buf[80];
  memset(buf,0x0,sizeof(buf));
  str.getBytes((unsigned char*)buf, sizeof(buf));
  puts(buf);
  flush();
}