Explorar el Código

Avoid isascii() & toascii() on Teensy 3.x too

main
PaulStoffregen hace 4 años
padre
commit
914219ed98
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      teensy3/WCharacter.h

+ 2
- 2
teensy3/WCharacter.h Ver fichero

@@ -61,7 +61,7 @@ inline boolean isAlpha(int c)
// that fits into the ASCII character set.
inline boolean isAscii(int c)
{
return ( isascii (c) == 0 ? false : true);
return ((c & ~0x7F) != 0 ? false : true);
}


@@ -143,7 +143,7 @@ inline boolean isHexadecimalDigit(int c)
// ASCII character set, by clearing the high-order bits.
inline int toAscii(int c)
{
return toascii (c);
return (c & 0x7F);
}



Cargando…
Cancelar
Guardar