|
char* qStrDupBetween |
( |
const char * |
str, |
|
|
const char * |
start, |
|
|
const char * |
end | |
|
) |
| | |
Duplicate a substing set
- Parameters:
-
| str | a pointer of original string |
| start | substring which is started with this |
| end | substring which is ended with this |
- Returns:
- a pointer of malloced string if successful, otherwise returns NULL
Definition at line 479 of file qString.c.
|