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
|
.\" Automatically generated by Pandoc 1.19.2.4
.\"
.TH "al_utf8_width" "3" "" "Allegro reference manual" ""
.hy
.SH NAME
.PP
al_utf8_width \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro.h>
size_t\ al_utf8_width(int32_t\ c)
\f[]
.fi
.SH DESCRIPTION
.PP
Returns the number of bytes that would be occupied by the specified code
point when encoded in UTF\-8.
This is between 1 and 4 bytes for legal code point values.
Otherwise returns 0.
.SH SEE ALSO
.PP
al_utf8_encode(3), al_utf16_width(3)
|