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 NTPClient mbed-rtos mbed
Fork of ptgm_semDMA by
Functions/Split.h@1:8129536051df, 2016-01-13 (annotated)
- Committer:
- viniciushl
- Date:
- Wed Jan 13 18:53:25 2016 +0000
- Revision:
- 1:8129536051df
- Parent:
- 0:fac116e94d44
Alterada captura para aquisi??o simples do A/D utilizando interrup??o do timer;
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| rebonatto | 0:fac116e94d44 | 1 | /* | 
| rebonatto | 0:fac116e94d44 | 2 | * Split.h | 
| rebonatto | 0:fac116e94d44 | 3 | * | 
| rebonatto | 0:fac116e94d44 | 4 | * Created on: 12/04/2012 | 
| rebonatto | 0:fac116e94d44 | 5 | * Author: francisco | 
| rebonatto | 0:fac116e94d44 | 6 | */ | 
| rebonatto | 0:fac116e94d44 | 7 | |
| rebonatto | 0:fac116e94d44 | 8 | #ifndef SPLIT_H_ | 
| rebonatto | 0:fac116e94d44 | 9 | #define SPLIT_H_ | 
| rebonatto | 0:fac116e94d44 | 10 | |
| rebonatto | 0:fac116e94d44 | 11 | #include <stdio.h> | 
| rebonatto | 0:fac116e94d44 | 12 | #include <string.h> | 
| rebonatto | 0:fac116e94d44 | 13 | #include <stdlib.h> | 
| rebonatto | 0:fac116e94d44 | 14 | |
| rebonatto | 0:fac116e94d44 | 15 | #ifdef __cplusplus | 
| rebonatto | 0:fac116e94d44 | 16 | extern "C" { | 
| rebonatto | 0:fac116e94d44 | 17 | #endif | 
| rebonatto | 0:fac116e94d44 | 18 | |
| rebonatto | 0:fac116e94d44 | 19 | extern int split(char* str,char* delim,char*** ret ); | 
| rebonatto | 0:fac116e94d44 | 20 | |
| rebonatto | 0:fac116e94d44 | 21 | #ifdef __cplusplus | 
| rebonatto | 0:fac116e94d44 | 22 | }; | 
| rebonatto | 0:fac116e94d44 | 23 | #endif | 
| rebonatto | 0:fac116e94d44 | 24 | |
| rebonatto | 0:fac116e94d44 | 25 | #endif /* SPLIT_H_ */ | 
