benchmark-synchandler.c 518 B

1234567891011121314151617181920212223242526272829303132
  1. #include <stdlib.h>
  2. #include <errno.h>
  3. // Required header:
  4. #include <clsync/clsync.h>
  5. // Optional headers:
  6. #include <clsync/configuration.h>
  7. #include <clsync/error.h>
  8. #include <clsync/ctx.h>
  9. struct ctx *ctx_p = NULL;
  10. int clsyncapi_init(struct ctx *_ctx_p, struct indexes *_indexes_p) {
  11. ctx_p = _ctx_p;
  12. return 0;
  13. }
  14. int clsyncapi_rsync(const char *inclistfile, const char *exclistfile) {
  15. return 0;
  16. }
  17. int clsyncapi_sync(int n, api_eventinfo_t *ei) {
  18. return 0;
  19. }
  20. int clsyncapi_deinit() {
  21. return 0;
  22. }