Marcelo Rebonatto / Mbed 2 deprecated PMED_Tempo

Dependencies:   EthernetInterface mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Split.h Source File

Split.h

00001 /*
00002  * Split.h
00003  *
00004  *  Created on: 12/04/2012
00005  *      Author: francisco
00006  */
00007 
00008 #ifndef SPLIT_H_
00009 #define SPLIT_H_
00010 
00011 #include <stdio.h>
00012 #include <string.h>
00013 #include <stdlib.h>
00014 
00015 #ifdef __cplusplus
00016 extern "C" {
00017 #endif
00018 
00019 extern int split(char* str,char* delim,char*** ret );
00020 
00021 #ifdef __cplusplus
00022 };
00023 #endif
00024 
00025 #endif /* SPLIT_H_ */