skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

fmtscan_asc.c (200B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/fmtscan.h>
      4 
      5 unsigned char fmtscan_asc (unsigned char c)
      6 {
      7   static char const *tab = "0123456789abcdefghijklmnopqrstuvwxyz" ;
      8   return (c >= 36) ? 0 : tab[c] ;
      9 }