Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / magpie_1_1 / sboot / cmnos / mem / inc / mem_api.h
1 #ifndef __MEM_API_H__
2 #define __MEM_API_H__
3 struct mem_api {
4     void (* _mem_init)(void);
5     void *(* _memset)(void *, int, unsigned int);
6     void *(* _memcpy)(void *, const void *, unsigned int);
7     void *(* _memmove)(void *, const void *, unsigned int);
8     int (* _memcmp)(const void *, const void *, unsigned int);
9 };
10 #endif /* __MEM_API_H__ */