iOS static lib compatible
This commit is contained in:
parent
800d58ea89
commit
249a16536a
2 changed files with 24 additions and 1 deletions
18
include/onod3000.h
Normal file
18
include/onod3000.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// Returns true on success. Writes three doubles: obs, z, p
|
||||
bool onod_run(const char* test,
|
||||
const uint8_t* samples,
|
||||
size_t len,
|
||||
double* result /* length >= 3 */);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue