mirror of
https://github.com/postgres/postgres.git
synced 2026-04-28 09:38:27 -04:00
17 lines
360 B
C
17 lines
360 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* user.h
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef USER_H
|
|
#define USER_H
|
|
|
|
extern void DefineUser(CreateUserStmt *stmt);
|
|
extern void AlterUser(AlterUserStmt *stmt);
|
|
extern void RemoveUser(char *user);
|
|
|
|
#endif /* USER_H */
|