documentation and version bump

This commit is contained in:
Lisa Milne 2023-12-06 21:44:24 +10:00
parent bb8d7d0da1
commit 6f1c569e67
2 changed files with 17 additions and 1 deletions

View file

@ -1,6 +1,6 @@
var clite = {
state:{
version:'0.3-6',
version:'0.3-7',
isinit:false,
runlevel:1
},

View file

@ -97,6 +97,22 @@ stdlib (libstd.so): io.include('stdlib')
getgid()
Returns teh numeric group id of the current user.
getpwuid(uid)
Returns a pw object, containing the passwd file data of the user
who's numeric user id = uid
getpwnam(name)
Returns a pw object, containing the passwd file data of the user
who's user name = name
getgrgid(gid)
Returns a gr object, containing the group file data of the group
who's numeric group id = gid
getgrnam(name)
Returns a gr object, containing the group file data of the group
who's group name = name
clite (libclite.so): io.include('clite')
Provides provides special functions used in CLIte.