-

Functions HI-TECH C GETS

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search

GETS

SYNOPSIS

#include  <stdio.h>

char * gets(char * s)


DESCRIPTION

Gets() reads a line from standard input into the buffer at s, deleting the newline (cf. fgets() ). The buffer is null terminated. It returns its argument, or NULL on end-of-file.

SEE ALSO

fgets, freopen