str_extra.c

Extra string functions library for C
git clone git://git.finwo.net/lib/str_extra.c
Log | Files | Refs | README

str_isHex.h (197B)


      1 #ifndef __FINWO_STREXTRA_STRISHEX_H__
      2 #define __FINWO_STREXTRA_STRISHEX_H__
      3 
      4 #include <stdlib.h>
      5 #include <stdbool.h>
      6 
      7 bool str_isHex(const char *subject);
      8 
      9 #endif // __FINWO_STREXTRA_STRISHEX_H__