Query: openpam_readlinev
OS: freebsd
Section: 3
Links: freebsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
OPENPAM_READLINEV(3) BSD Library Functions Manual OPENPAM_READLINEV(3)NAMEopenpam_readlinev -- read a line from a file and split it into wordsLIBRARYPluggable Authentication Module Library (libpam, -lpam)SYNOPSIS#include <sys/types.h> #include <stdio.h> #include <security/pam_appl.h> #include <security/openpam.h> char ** openpam_readlinev(FILE *f, int *lineno, int *lenp);DESCRIPTIONThe openpam_readlinev() function reads a line from a file, splits it into words according to the rules described in the openpam_readword(3) manual page, and returns a list of those words. If lineno is not NULL, the integer variable it points to is incremented every time a newline character is read. This includes quoted or escaped newline characters and the newline character at the end of the line. If lenp is not NULL, the number of words on the line is stored in the variable to which it points.RETURN VALUESIf successful, the openpam_readlinev() function returns a pointer to a dynamically allocated array of pointers to individual dynamically allocated NUL-terminated strings, each containing a single word, in the order in which they were encountered on the line. The array is ter- minated by a NULL pointer. The caller is responsible for freeing both the array and the individual strings by passing each of them to free(3). If the end of the line was reached before any words were read, openpam_readlinev() returns a pointer to a dynamically allocated array con- taining a single NULL pointer. The openpam_readlinev() function can fail and return NULL for one of four reasons: o The end of the file was reached before any words were read; errno is zero, ferror(3) returns zero, and feof(3) returns a non-zero value. o The end of the file was reached while a quote or backslash escape was in effect; errno is set to EINVAL, ferror(3) returns zero, and feof(3) returns a non-zero value. o An error occurred while reading from the file; errno is non-zero, ferror(3) returns a non-zero value and feof(3) returns zero. o A malloc(3) or realloc(3) call failed; errno is set to ENOMEM, ferror(3) returns a non-zero value, and feof(3) may or may not return a non-zero value.SEE ALSOopenpam_readline(3), openpam_readword(3), pam(3)STANDARDSThe openpam_readlinev() function is an OpenPAM extension.AUTHORSThe openpam_readlinev() function and this manual page were developed by Dag-Erling Smorgrav <des@des.no>.BSDSeptember 12, 2014 BSD
Related Man Pages |
---|
fgetln(3) - mojave |
fgetwln_l(3) - mojave |
getdelim(3) - netbsd |
fgetwln(3) - osx |
openpam_readword(3) - freebsd |
Similar Topics in the Unix Linux Community |
---|
C function call dynamically |
Extract X words from end of line, minus last keynumber X |
Replacing individual characters with a pattern. |