First Version

Dependencies:   EthernetInterface mbed-rtos mbed

Functions/Split.h

Committer:
rebonatto
Date:
2016-03-07
Revision:
3:94a128e0f316
Parent:
0:9df41090ba33

File content as of revision 3:94a128e0f316:

/*
 * Split.h
 *
 *  Created on: 12/04/2012
 *      Author: francisco
 */

#ifndef SPLIT_H_
#define SPLIT_H_

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif

extern int split(char* str,char* delim,char*** ret );

#ifdef __cplusplus
};
#endif

#endif /* SPLIT_H_ */