Qore Programming Language Reference Manual  0.9.11
ql_pwd.dox.h
1 
3 namespace Qore {
84 
106 *hash getgrgid(softint gid);
107 
109 
132 hash getgrgid2(softint gid);
133 
135 
156 *hash getgrnam(string name);
157 
159 
182 hash getgrnam2(string name);
183 
185 
206 hash getpwnam(string name);
207 
209 
232 hash getpwnam2(string name);
233 
235 
242 nothing getpwuid();
243 
245 
266 *hash getpwuid(softint uid);
267 
269 
292 hash getpwuid2(softint uid);
293 
295 }
296 
298 namespace Qore {
302 
304 
320 string getusername();
321 
323 }
Qore::getpwuid
nothing getpwuid()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::getusername
string getusername()
returns the current username
Qore::getpwnam
hash getpwnam(string name)
Returns a password information hash representing the user information for the user name passed,...
Qore::getpwuid2
hash getpwuid2(softint uid)
Returns a password information hash representing the user information for the user ID passed,...
Qore::getgrnam
*hash getgrnam(string name)
Returns a group information hash representing the group information for the group name passed,...
Qore::getgrgid
*hash getgrgid(softint gid)
Returns a group information hash representing the group information for the group ID passed,...
Qore::getgrnam2
hash getgrnam2(string name)
Returns a group information hash representing the group information for the group name passed,...
Qore::hash
hash< auto > hash(object obj)
Returns a hash of an object's members.
Qore::getpwnam2
hash getpwnam2(string name)
Returns a password information hash representing the user information for the user name passed,...
Qore::getgrgid2
hash getgrgid2(softint gid)
Returns a group information hash representing the group information for the group ID passed,...
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3