summary refs log tree commit diff
path: root/man/libhttpc-alloc.3
blob: 4fed7e457ccdd1ee1b0294212331f10971e252c6 (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
.Dd December 13, 2024
.Dt LIBHTTPC-ALLOC 3
.Os
.
.Sh NAME
.Nm LibHTTPC_Malloc ,
.Nm LibHTTPC_Realloc ,
.Nm LibHTTPC_Free
.Nd types for defining
.Xr malloc 3
functions
.
.Sh SYNOPSIS
.Vt typedef void *LibHTTPC_Malloc(size_t);
.Vt typedef void *LibHTTPC_Realloc(void *, size_t);
.Vt typedef void LibHTTPC_Free(size_t);
.Vt extern LibHTTPC_Malloc *LibHTTPC_malloc;
.Vt extern LibHTTPC_Realloc *LibHTTPC_realloc;
.Vt extern LibHTTPC_Free *LibHTTPC_free;
.
.Sh DESCRIPTION
These are variables
that are used
for setting own
malloc implementation.
Set them
using
.Ql LibHTTPC
.
.Sh SEE ALSO
.Xr libhttpc 3
.
.Sh AUTHORS
.An Nakidai Perumenei Aq Mt nakidai@disroot.org