18 lines
381 B
Lua
18 lines
381 B
Lua
------------
|
|
-- 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
|
|
|