FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 907:7a189b7bbd67
lcdemu: input processing implemented, compiles
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Mon, 07 Sep 2015 10:35:20 +0000 |
| parents | 40f607bb0a2c |
| children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }
