summaryrefslogtreecommitdiff
path: root/src/passwd/pwf.h
blob: 0a76ef80fba3efedcda398f8a7b46b41beae6277 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <pwd.h>
#include <grp.h>
#include <shadow.h>
#include <stdio.h>
#include <errno.h>
#include <stdint.h>
#include <string.h>
#include <limits.h>
#include "libc.h"

struct passwd *__getpwent_a(FILE *f, struct passwd *pw, char **line, size_t *size);
struct spwd *__getspent_a(FILE *f, struct spwd *sp, char **line, size_t *size);
struct group *__getgrent_a(FILE *f, struct group *gr, char **line, size_t *size, char ***mem, size_t *nmem);