blob: 2c12e1f685a5df66446ea72c948e6f6f5df507c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
---@meta
---#DES 'os'
---@class os*
os = {}
---#DES 'os.clock'
---@return number
function os.clock() end
---#DES 'os.date'
---@param format? string
---@param time? integer
---@return string
function os.date(format, time) end
---#DES 'os.difftime'
---@param t2 integer
---@param t1 integer
---@return integer
function os.difftime(t2, t1) end
---#DES 'os.execute'
---#if VERSION <= 5.1 then
---@param command string
---@return integer code
function os.execute(command) end
---#else
---@param command string
---@return boolean? suc
---@return exitcode? exitcode
---@return integer? code
function os.execute(command) end
---#end
---#if VERSION <= 5.1 and not JIT then
---#DES 'os.exit<5.1'
---@param code? integer
function os.exit(code, close) end
---#else
---#DES 'os.exit>5.2'
---@param code? boolean|integer
---@param close? boolean
function os.exit(code, close) end
---#end
---#DES 'os.getenv'
---@param varname string
---@return string
function os.getenv(varname) end
---#DES 'os.remove'
---@param filename string
---@return boolean suc
---@return string? errmsg
function os.remove(filename) end
---#DES 'os.rename'
---@param oldname string
---@param newname string
---@return boolean suc
---@return string? errmsg
function os.rename(oldname, newname) end
---@alias localecategory
---|>'"all"'
---| '"collate"'
---| '"ctype"'
---| '"monetary"'
---| '"numeric"'
---| '"time"'
---#DES 'os.setlocale'
---@param locale string|nil
---@param category? localecategory
---@return string localecategory
function os.setlocale(locale, category) end
---#DES 'os.time'
---@param date? table
---@return integer
function os.time(date) end
---#DES 'os.tmpname'
---@return string
function os.tmpname() end
return os
|