22 lines
300 B
C
22 lines
300 B
C
#ifndef MAG160C_INTERNAL_H
|
|
#define MAG160C_INTERNAL_H
|
|
|
|
#include "mag160c/mag160c.h"
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mag160c_set_error(const char *fmt, ...);
|
|
void mag160c_clear_error(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|