summaryrefslogtreecommitdiff
path: root/docs/u8c_errtyp.3
blob: f42ac105f73dc241f210274fac9a0498c87e57cd (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
25
26
27
28
29
30
31
.TH "u8c_errtyp" "3" "" "u8c" "u8c API Manual"
.SH NAME
.PP
u8c_errtyp - Error type - Enumeration for specifying the type of error.
.SH DECLARATION
.PP
.nf
\f[C]
/* # include <u8c/err.h> */
enum u8c_errtyp {
	u8c_errtyp_badalloc,
	u8c_errtyp_badio,
	u8c_errtyp_u32oor,
	u8c_errtyp_u8oor,
	u8c_errtyp_deferr,
	u8c_errtyp_untermin,
	u8c_errtyp_maxerrtyp,
	u8c_errtyp_all,
};
\f[R]
.fi
.SH DESCRIPTION
.PP
The enumeration \f[B]u8c_errtyp\f[R] contains the various types of error to be used in u8c.
.PP
The member \f[B]u8c_errtyp_maxerrtyp\f[R] must \f[I]NEVER\f[R] be passed to any u8c function.
.PP
The member \f[B]u8c_errtyp_all\f[R] is to be passed to \f[B]u8c_regerrhandl\f[R] only.
.SH VERSION
.PP
u8c 19