GLib.ascii_isxdigit (original) (raw)
GLib
API Version: 2.0
Library Version: 2.85.0
Function Macros
Generated by gi-docgen 2024.1
Function Macro
GLibascii_isxdigit
Declaration [src]
#define g_ascii_isxdigit (
c
)
Description [src]
Determines whether a character is a hexadecimal-digit character.
Unlike the standard C library isxdigit()
function, this takes a char
, not an int
, so don’t call it on EOF
, but no need to cast to guchar
before passing a possibly non-ASCII character in.
This function is not directly available to language bindings.
Parameters
c
Type: -
Any character.