Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Side by Side Diff: fusl/src/passwd/pwf.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/passwd/putspent.c ('k') | fusl/src/prng/__rand48_step.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <pwd.h>
2 #include <grp.h>
3 #include <shadow.h>
4 #include <stdio.h>
5 #include <errno.h>
6 #include <stdint.h>
7 #include <string.h>
8 #include <limits.h>
9 #include "libc.h"
10
11 int __getpwent_a(FILE *f, struct passwd *pw, char **line, size_t *size, struct p asswd **res);
12 int __getpw_a(const char *name, uid_t uid, struct passwd *pw, char **buf, size_t *size, struct passwd **res);
13 int __getgrent_a(FILE *f, struct group *gr, char **line, size_t *size, char ***m em, size_t *nmem, struct group **res);
14 int __getgr_a(const char *name, gid_t gid, struct group *gr, char **buf, size_t *size, char ***mem, size_t *nmem, struct group **res);
15 int __parsespent(char *s, struct spwd *sp);
OLDNEW
« no previous file with comments | « fusl/src/passwd/putspent.c ('k') | fusl/src/prng/__rand48_step.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698