#ifndef MY_SVM_SVM_H #define MY_SVM_SVM_H #include <stdint.h> typedef struct { uint32_t idx; float val; } Node; void svm_init(); Node *input(); int8_t svm_predict(const Node *x); #endif