Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / magpie_1_1 / inc / string_api.h
1 #ifndef __STRING_API_H__
2 #define __STRING_API_H__
3 struct string_api {
4     void (* _string_init)(void);
5     char *(* _strcpy)(char *, const char *);
6     char *(* _strncpy)(char *, const char *, unsigned int);
7     int (* _strlen)(const char *);
8     int (* _strcmp)(const char *, const char *);
9     int (* _strncmp)(const char *, const char *, unsigned int);
10 };
11 #endif /* __STRING_API_H__ */