Function report |
Source Code:lib\string_helpers.c |
Create Date:2022-07-28 06:25:53 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:string_unescape - unquote characters in the given string*@src: source buffer (escaped)*@dst: destination buffer (unescaped)*@size: size of the destination buffer (0 to unlimit)*@flags: combination of the flags.* Description:
Proto:int string_unescape(char *src, char *dst, size_t size, unsigned int flags)
Type:int
Parameter:
Type | Parameter | Name |
---|---|---|
char * | src | |
char * | dst | |
size_t | size | |
unsigned int | flags |
274 | src++ |
275 | size-- |
277 | If flags & UNESCAPE_SPACE && unescape_space( & src, & out) Then Continue |
281 | If flags & UNESCAPE_OCTAL && unescape_octal( & src, & out) Then Continue |
285 | If flags & UNESCAPE_HEX && unescape_hex( & src, & out) Then Continue |
289 | If flags & UNESCAPE_SPECIAL && unescape_special( & src, & out) Then Continue |
293 | out++ = '\\' |
297 | out = '\0' |
Name | Describe |
---|---|
test_string_unescape |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |