Commit 14594002 14594002025feb32aeea35bd4efe3023c7cdf0e2 by Sergey Poznyakoff

Prototypes for the new functions.

1 parent 521dc384
...@@ -64,6 +64,12 @@ extern char * mu_tilde_expansion __P ((const char *ref, const char *delim, const ...@@ -64,6 +64,12 @@ extern char * mu_tilde_expansion __P ((const char *ref, const char *delim, const
64 64
65 extern size_t util_cpystr __P ((char *dst, const char *src, size_t size)); 65 extern size_t util_cpystr __P ((char *dst, const char *src, size_t size));
66 66
67 struct passwd;
68
69 void mu_register_getpwnam __P((struct passwd *(*fun) __P((char *))));
70 struct password * mu_getpwnam __P((const char *name));
71
72
67 #ifdef __cplusplus 73 #ifdef __cplusplus
68 } 74 }
69 #endif 75 #endif
......