houndsniff

Hash identification tool
git clone git://mcdim.xyz/houndsniff.git
Log | Files | Refs | README | LICENSE

select.h (358B)


      1 /*
      2  *             houndsniff
      3  *    hash identification program.
      4  *
      5  *  by Michael Constantine Dimopoulos
      6  *  https://mcdim.xyz  <mk@mcdim.xyz>
      7  *
      8  *  select.h
      9  *
     10  */
     11 
     12 #ifndef SELECT_H
     13 #define SELECT_H
     14 
     15 #define RED "\x1b[31m"
     16 #define RESET "\x1b[0m"
     17 void list(void);
     18 void sel(int length, const char *charset, int clean_out);
     19 char *replace(char *str);
     20 
     21 #endif