flipbip_string.h 372 B

1234567
  1. char * flipbip_strtok(char *s, const char *delim);
  2. char * flipbip_strtok_r(char *s, const char *delim, char **last);
  3. void flipbip_btox(const unsigned char i, char *str);
  4. void flipbip_xtob(const char *str, unsigned char *out, int out_len);
  5. void flipbip_cipher(const unsigned char* key_in, const unsigned int key_len, const char* in, char* out, const unsigned int io_len);