mirror of
https://codeberg.org/TicklishHoneyBee/CLIte.git
synced 2026-03-11 09:04:37 +00:00
documentation and version bump
This commit is contained in:
parent
bb8d7d0da1
commit
6f1c569e67
2 changed files with 17 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
var clite = {
|
||||
state:{
|
||||
version:'0.3-6',
|
||||
version:'0.3-7',
|
||||
isinit:false,
|
||||
runlevel:1
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue