15 lines
233 B
C
15 lines
233 B
C
#pragma once
|
|
#ifndef __ELITE_H__
|
|
#define __ELITE_H__
|
|
|
|
#include "elite_def.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
void elite_init(void);
|
|
void elite_instr_send(void *p, size_t size);
|
|
|
|
#endif /*!__ELITE_H__*/
|