flipbip_string.h 406 B

123456789101112
  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* in, int in_len, char* str);
  4. void flipbip_xtob(const char* str, unsigned char* out, int out_len);
  5. void flipbip_cipher(
  6. const unsigned char* key_in,
  7. const unsigned int key_len,
  8. const char* in,
  9. char* out,
  10. const unsigned int io_len);