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

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

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 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
OLDNEW
1 #ifndef NSCD_H 1 #ifndef NSCD_H
2 #define NSCD_H 2 #define NSCD_H
3 3
4 #include <stdint.h> 4 #include <stdint.h>
5 5
6 #define NSCDVERSION 2 6 #define NSCDVERSION 2
7 #define GETPWBYNAME 0 7 #define GETPWBYNAME 0
8 #define GETPWBYUID 1 8 #define GETPWBYUID 1
9 #define GETGRBYNAME 2 9 #define GETGRBYNAME 2
10 #define GETGRBYGID 3 10 #define GETGRBYGID 3
(...skipping 21 matching lines...) Expand all
32 #define GRPASSWDLEN 3 32 #define GRPASSWDLEN 3
33 #define GRGID 4 33 #define GRGID 4
34 #define GRMEMCNT 5 34 #define GRMEMCNT 5
35 #define GR_LEN 6 35 #define GR_LEN 6
36 36
37 #define INITGRVERSION 0 37 #define INITGRVERSION 0
38 #define INITGRFOUND 1 38 #define INITGRFOUND 1
39 #define INITGRNGRPS 2 39 #define INITGRNGRPS 2
40 #define INITGR_LEN 3 40 #define INITGR_LEN 3
41 41
42 FILE *__nscd_query(int32_t req, const char *key, int32_t *buf, size_t len, int * swap); 42 FILE* __nscd_query(int32_t req,
43 const char* key,
44 int32_t* buf,
45 size_t len,
46 int* swap);
43 47
44 #endif 48 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698