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