Guido Ottaviani / Mbed 2 deprecated LeonardoMbos

Dependencies:   mbos Watchdog TextLCD mbed ConfigFile

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tok.h Source File

tok.h

Go to the documentation of this file.
00001 /*
00002  *
00003  * NMEA library
00004  * URL: http://nmea.sourceforge.net
00005  * Author: Tim (xtimor@gmail.com)
00006  * Licence: http://www.gnu.org/licenses/lgpl.html
00007  * $Id: tok.h 4 2007-08-27 13:11:03Z xtimor $
00008  *
00009  */
00010 
00011 #ifndef __NMEA_TOK_H__
00012 #define __NMEA_TOK_H__
00013 
00014 #include "config.h"
00015 
00016 #ifdef  __cplusplus
00017 extern "C" {
00018 #endif
00019 
00020 int     nmea_calc_crc(const char *buff, int buff_sz);
00021 int     nmea_atoi(const char *str, int str_sz, int radix);
00022 double  nmea_atof(const char *str, int str_sz);
00023 int     nmea_printf(char *buff, int buff_sz, const char *format, ...);
00024 int     nmea_scanf(const char *buff, int buff_sz, const char *format, ...);
00025 
00026 #ifdef  __cplusplus
00027 }
00028 #endif
00029 
00030 #endif /* __NMEA_TOK_H__ */