binary.h 278 B

1234567891011121314
  1. #ifndef _BINARY_H
  2. # define _BINARY_H
  3. #include "conf.h"
  4. extern int checked_bin_buf;
  5. # define WRITE_CHECKSUM 1
  6. # define GET_CHECKSUM 2
  7. void check_sum(const char *, const char *);
  8. void write_settings(const char *, int);
  9. void conf_to_bin(conf_t *);
  10. #endif /* !_BINARY_H */