ref: e51c4bc6e493a9cd0d9e9d7f1d24c57ae77bab65
dir: /sys/src/libstdio/gets.c/
/* * pANS stdio -- gets */ #include "iolib.h" char *gets(char *as){ #ifdef secure stdin->flags|=ERR; return NULL; #else char *s=as; int c; while((c=getchar())!='\n' && c!=EOF) *s++=c; if(c!=EOF || s!=as) *s='\0'; else return NULL; return as; #endif }