blob: 0e5e17e62207fb5e7c193742d4e75474fc2295dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
------------
-- Parameters may have named subfields, if they are tables.
--
-- @module subparams
module(...)
-------
-- A function with subfield arguments.
-- @param s string
-- @param opts multibyte encoding options
-- @param opts.charset string
-- @param opts.strict bool
-- @param verbose bool
-- @return its length
function with_options (s,opts,verbose)
end
|