#include <stdio.h>
char *fgets (
char* string, /* store string */
int length, /* length of string */
FILE* stream); /* file stream to read from */
Description
The function fgets reads a string from a data steam. The
parameter string is a pointer defining the buffer
to store the string. The parameter length defines
the numbers of characters to read. The parameter stream is a pointer defining the data stream to read
from.
The function is included in the library RL-FlashFS. The prototype
is defined in the file stdio.h
Characters are read from the current cursor position:
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.