7 lines
117 B
C
7 lines
117 B
C
|
|
/*
|
||
|
|
* C functions exposed to Rust.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
extern bool validate_param_in_c(int param, int value);
|