ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-pwd.h
Go to the documentation of this file.
1 #ifndef SIMU_PWD_H
2 #define SIMU_PWD_H
3 
4 #include <sys/types.h>
5 #include <pwd.h>
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 struct passwd * dce_getpwnam (const char *name);
12 
13 struct passwd * dce_getpwuid (uid_t uid);
14 
15 void dce_endpwent (void);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* SIMU_PWD_H */