-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlua_Writer.3
39 lines (39 loc) · 929 Bytes
/
lua_Writer.3
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
.Dd $Mdocdate: July 18 2022 $
.Dt LUA_WRITER 3
.Os
.Sh NAME
.Nm lua_Writer
.Nd type of the writer function used by
.Xr lua_dump 3
.Sh SYNOPSIS
.In lua.h
.Ft typedef int *
.Fn lua_Writer "lua_State *L" "const void* p" "size_t sz" "void* ud"
.Sh DESCRIPTION
.Vt lua_Writer
type of the writer function used by
.Xr lua_dump 3 .
Every time it produces another piece of chunk,
.Xr lua_dump 3
calls the writer, passing along the buffer to be written
.Pq Fa p ,
its size
.Pq Fa sz ,
and the data parameter supplied to
.Xr lua_dump 3 .
.Sh RETURN VALUES
The writer returns an error code: 0 means no errors; any other value means an
error and stops
.Xr lua_dump 3
from calling the writer again.
.Sh SEE ALSO
.Rs
.%A Roberto Ierusalimschy
.%A Luiz Henrique de Figueiredo
.%A Waldemar Celes
.%T Lua 5.1 Reference Manual
.Re
.Sh HISTORY
The
.Vt lua_Writer
manual page is based on Lua Reference Manual 5.1 and was created by Sergey Bronnikov.