username.h 333 B

123456789101112131415
  1. /*
  2. * username.h
  3. * lookup effective username
  4. *
  5. * Copyright (c) 2003-2016, PostgreSQL Global Development Group
  6. *
  7. * src/include/common/username.h
  8. */
  9. #ifndef USERNAME_H
  10. #define USERNAME_H
  11. extern const char *get_user_name(char **errstr);
  12. extern const char *get_user_name_or_exit(const char *progname);
  13. #endif /* USERNAME_H */