#ifndef __PUREPW_H__ #define __PUREPW_H__ #include <glib.h> gboolean pw_add_user (const gchar *user, const gchar *passwd, GError **err); gboolean pw_remove_user (const gchar *user, GError **err); gboolean pw_user_exists (const gchar *user, GError **err); GList *pw_get_available_users (GError **err); PWInfo *pw_get_user_information (gchar *user, GError **err); gboolean pw_set_user_information (PWInfo * const i, GError **err); #endif /* __PUREPW_H__ */