aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/api/os.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
commitd196ce1c86c27e0b07b2ee537da07e362f44e784 (patch)
tree4b3e7cdadc82657d7d3a2aaef2b69beabfc5299c /modules/lua/api/os.luadoc
parent5b3d39a6ac36e344ae95666b6b60f3ee1d4e1057 (diff)
downloadtextadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.tar.gz
textadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.zip
Added Adeptsense.
Diffstat (limited to 'modules/lua/api/os.luadoc')
-rw-r--r--modules/lua/api/os.luadoc24
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/lua/api/os.luadoc b/modules/lua/api/os.luadoc
deleted file mode 100644
index cb8ca275..00000000
--- a/modules/lua/api/os.luadoc
+++ /dev/null
@@ -1,24 +0,0 @@
---- Returns CPU time used by program in seconds.
-function clock()
---- Returns a string or table containing date and time, "*t" returns a table.
-function date([format [, time]])
---- Returns number of seconds from time t1 to time t2.
-function difftime(t2, t1)
---- Executes command using C function system, returns status code.
-function execute(command)
---- Terminates host program with optional code, default is success code.
-function exit([code])
---- Returns value of environment variable varname. nil if not defined.
-function getenv(varname)
---- Deletes file with given name, nil if fails.
-function remove(filename)
---- Renames file oldname to newname, nil if fails.
-function rename(oldname, newname)
---- Set current locale of program, returns name of new locate or nil.
-function setlocale(locale [, category])
---- Returns current time(usually seconds) or time as represented by table.
-function time([table])
----
--- Returns a string with a filename for a temporary file(dangerous! tmpfile is
--- better).
-function tmpname()