FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 905:841982f31be3
lcdemu: got to input lines
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 07 Sep 2015 08:51:02 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }