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

Unified Diff: fusl/src/passwd/getspnam.c

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/passwd/getspent.c ('k') | fusl/src/passwd/getspnam_r.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/passwd/getspnam.c
diff --git a/fusl/src/passwd/getspnam.c b/fusl/src/passwd/getspnam.c
new file mode 100644
index 0000000000000000000000000000000000000000..041f896525f1e68f6fbf8076a3bb42a154f0752b
--- /dev/null
+++ b/fusl/src/passwd/getspnam.c
@@ -0,0 +1,17 @@
+#include "pwf.h"
+
+#define LINE_LIM 256
+
+struct spwd *getspnam(const char *name)
+{
+ static struct spwd sp;
+ static char *line;
+ struct spwd *res;
+ int e;
+
+ if (!line) line = malloc(LINE_LIM);
+ if (!line) return 0;
+ e = getspnam_r(name, &sp, line, LINE_LIM, &res);
+ if (e) errno = e;
+ return res;
+}
« no previous file with comments | « fusl/src/passwd/getspent.c ('k') | fusl/src/passwd/getspnam_r.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698