leaf.h 178 B

123456789
  1. #pragma once
  2. #include <cstdint>
  3. extern "C" {
  4. const int32_t LEAF_ERR_OK = 0;
  5. const int32_t LEAF_ERR_CONFIG = 2;
  6. int32_t leaf_test_config(const char* config_path);
  7. }