blob: bf8c81ef71c345e5e53087721b37d3d3a9677e80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.TH "u8c_end" "3" "" "u8c" "u8c API Manual"
.SH NAME
.PP
u8c_end - End - Finalise u8c and clean up.
.SH DECLARATION
.PP
.nf
\f[C]
# include <stdbool.h>
extern bool u8c_end(void);
\f[R]
.fi
.SH DESCRIPTION
.PP
The function \f[B]u8c_end\f[R] ends the current u8c session.
.PP
If \f[B]u8c_end\f[R] is called before \f[B]u8c_init\f[R], \f[B]false\f[R] is returned, and nothing has happened.
.PP
If it is called after it has already been called, unless \f[B]u8c_init\f[R] has been called in the meantime, \f[B]false\f[R] is returned, and nothing has happened.
.PP
Even if \f[B]u8c_thrdsafe\f[R] evaluates to \f[B]true\f[R], this function is never thread-safe.
.SH VERSION
.PP
u8c 2
|