Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface mbed-rtos mbed NTPClient
Functions/Split.h
- Committer:
- rebonatto
- Date:
- 2014-09-04
- Revision:
- 0:66d8bd1f9d4c
File content as of revision 0:66d8bd1f9d4c:
/*
* 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_ */
