10 lines
133 B
C
10 lines
133 B
C
#ifndef AUTH_H
|
|
#define AUTH_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
void auth_set_enable(bool value);
|
|
bool auth_get_enable(void);
|
|
|
|
#endif // AUTH_H
|