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