Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / magpie_1_1 / inc / printf_api.h
1 #ifndef __PRINTF_API_H__
2 #define __PRINTF_API_H__
3
4 struct printf_api {
5     void (* _printf_init)(void);
6     int (* _printf)(const char * fmt, ...);
7 };
8
9 /* NB: The printf module requires the serial module. */
10 void cmnos_printf_module_install(struct printf_api *tbl);
11 int cmnos_printf(const char *fmt, ...);
12
13
14
15 #endif /* __PRINTF_API_H__ */