Lines Matching refs:array
1314 the contents of the array @var{s} are unchanged and a null pointer is
1337 the contents of the array @var{ws} are unchanged and a null pointer is
1557 the array @var{data}, from the stream @var{stream}. It returns the
1581 the array @var{data}, to the stream @var{stream}. The return value is
2383 array @var{s} instead of written to a stream. A null character is written
2387 the array @var{s}, not including the terminating null character.
2407 wide character array @var{ws} instead of written to a stream. A null
2771 The information is stored in the array @var{argtypes}; each element of
2772 this array describes one argument. This information is encoded using
2775 The argument @var{n} specifies the number of elements in the array
2783 array and call @code{parse_printf_format} again.
3209 @var{n} elements of the @var{argtypes} array with information about the
3404 @code{scanf} to initialize an array of @code{double}:
3408 readarray (double *array, int n)
3412 if (scanf (" %lf", &(array[i])) != 1)
4768 Otherwise, @var{buf} should be a character array that can hold at least
4769 @var{size} characters. You should not free the space for this array as
4770 long as the stream remains open and this array remains its buffer. You
4772 (@pxref{Unconstrained Allocation}) the buffer. Using an automatic array
4774 that declares the array.
4776 While the array remains a stream buffer, the stream I/O functions will
4778 the values in the array directly while the stream is using it for
4945 by the argument @var{buf}. This array must be at least @var{size} bytes long.
4948 dynamically allocates an array @var{size} bytes long (as with @code{malloc};