Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Archivist
/
gplib
Seguir
1
Destacar
1
Fork
0
Código
Incidencias
8
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Added a header for text handling in ascii
channel
Ludovic 'Archivist' Lagouardette
hace 3 años
padre
9defdda3c5
commit
b31ad140a7
Se han
modificado 1 ficheros
con
13 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+13
-0
include/gp/text/ascii.hpp
+ 13
- 0
include/gp/text/ascii.hpp
Ver fichero
@ -0,0 +1,13 @@
#
pragma once
inline
bool
is_digit
(
char
v
)
{
return
v
>
=
'
0
'
&
&
v
<
=
'
9
'
;
}
inline
bool
is_alpha
(
char
v
)
{
return
(
v
>
=
'
a
'
&
&
v
<
=
'
z
'
)
|
|
(
v
>
=
'
A
'
&
&
v
<
=
'
Z
'
)
;
}
inline
bool
is_alnum
(
char
v
)
{
return
is_alpha
(
v
)
|
|
is_digit
(
v
)
;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar