Esempio n. 1
0
File: main.c Progetto: elerson/RPL
void USBPutString(char *s)
{
  while(*s)
    USBPutChar(*s++);
}
Esempio n. 2
0
static int usb_putchar(char c, FILE *stream)
{
	USBPutChar(c);
	return 0;
}