source: azure_iot_hub/trunk/musl-1.1.18/src/passwd/pwf.h@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 673 bytes
Line 
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
11int __getpwent_a(FILE *f, struct passwd *pw, char **line, size_t *size, struct passwd **res);
12int __getpw_a(const char *name, uid_t uid, struct passwd *pw, char **buf, size_t *size, struct passwd **res);
13int __getgrent_a(FILE *f, struct group *gr, char **line, size_t *size, char ***mem, size_t *nmem, struct group **res);
14int __getgr_a(const char *name, gid_t gid, struct group *gr, char **buf, size_t *size, char ***mem, size_t *nmem, struct group **res);
15int __parsespent(char *s, struct spwd *sp);
Note: See TracBrowser for help on using the repository browser.