亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? nxml.h

?? libnxml-no-curl-簡化版2007-07-01,一個別很不錯的XML生成和解析程序。
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * * \code * nxml_data_t *data1, *data2; * data1=NULL; * nxml_add(nxml, NULL, &data1); * * data2=(nxml_data_t *)malloc(sizeof(nxml_data_t)); * nxml_add(nxml, NULL, &data2); * \endcode *//*nxml_error_t	nxml_add		(nxml_t * nxml,					 nxml_data_t *parent,					 nxml_data_t **child);*//**  * This function removes a nxml_data_t child to a parent in the data  * struct. If parent is NULL the child will be removed in the root level of * XML document. This function doesn't free the child. If you want you can * reinsert the child in another parent tree or use the nxml_free_data  * function. * * \param nxml Pointer to a nxml_t data struct. * \param parent The parent of data struct child. If it is NULL, the * child will be searched in the root level. * \param child It is the pointer to the child that you want remove * \return the error code *//*nxml_error_t	nxml_remove		(nxml_t * nxml,					 nxml_data_t *parent,					 nxml_data_t *child);*//**  * This function creates a new nxml_attr_t data of a element in the data  * struct. * * \param nxml Pointer to a nxml_t data struct. * \param element The element of the new data struct attribute. * \param attribute The pointer to the your data struct. If it is NULL it will * be allocated, else no. * \return the error code *//*nxml_error_t	nxml_add_attribute	(nxml_t *nxml,					 nxml_data_t *element,					 nxml_attr_t **attribute);*//** * This function removes a nxml_attr_t data of a element. It does not free it * so you can reinsert o free it with nxml_free_attribute. * * \param nxml Pointer to a nxml_t data struct. * \param element The element that contains the attribute * \param attribute The attribute that you want remove. * \return the error code *//*nxml_error_t	nxml_remove_attribute	(nxml_t *nxml,					 nxml_data_t *element,					 nxml_attr_t *attribute);*//** * This function adds a nxml_namespace_t data in a nxml document. * * \param nxml Pointer to a nxml_t data struct. * \param element The element of the new data struct namespace. * \param ns The namespace that you want add * \return the error code *//*nxml_error_t	nxml_add_namespace	(nxml_t *nxml,		                         nxml_data_t *element,					 nxml_namespace_t **ns);*//** * This function removes a nxml_namespace_t data in a nxml document. * * \param nxml Pointer to a nxml_t data struct. * \param element The element of the new data struct namespace. * \param ns The namespace that you want remove * \return the error code *//*nxml_error_t	nxml_remove_namespace	(nxml_t *nxml,		                         nxml_data_t *element,					 nxml_namespace_t *ns);*//** * This function sets the output function. If you set a your function the * parser write the error with this function. As default there is not a * function. If you want tou can set 'nxml_print_general' function that * print to stderr. * * \param nxml The struct create with nxml_new. * \param func Your function. If you don't want the function, set it to NULL. * As default a nxml_t element has not a output function. * \return the error code *//*nxml_error_t	nxml_set_func		(nxml_t * nxml,					 void (*func) (char *, ...));*/// void		nxml_print_generic	(char *, ...);/** * This function sets the timeout in seconds for the download of a remote *  XML document. Default is 0 and 0 is no timeout. *//*nxml_error_t	nxml_set_timeout	(nxml_t * nxml,					 int seconds);*//* PARSER FUNCTIONS *********************************************************//** * This function parses a url. It downloads a url with curl library and * parses it. * * \param nxml the struct create with nxml_new. * \param url the url that you want parse. * \return the error code *//*******************************************nxml_error_t	nxml_parse_url		(nxml_t * nxml,					 char *url);************************************************//**  * This function parses a file. * * \param nxml the struct create with nxml_new. * \param file the file that you want parse. * \return the error code */nxml_error_t	nxml_parse_file		(nxml_t * nxml,					 char *file);/**  * This function parses a buffer in memory. * * \param nxml the struct create with nxml_new. * \param buffer the buffer that you want parse. * \param size the size of buffer. If size is 0, the function checks the  * length of your buffer searching a '\\0'. * \return the error code */nxml_error_t	nxml_parse_buffer	(nxml_t * nxml,					 char *buffer,					 size_t size);/* DTD FUNCTIONS ************************************************************//** * This function valids a XML document with its DTD. * * \param nxml the struct create with nxml_new. * \param flag is a attribute for this function. Use some enum like * NXML_DOCTYPEFLAG_DOWNLOAD | NXML_DOCTYPEFLAG_RECURSIVE * \return the error code */nxml_error_t	nxml_valid_dtd		(nxml_t * nxml,					 int flag);/** * This function parses a remote DTD document and checks if the nxml_t * document is valid or not. * * \param nxml the struct of your XML Document * \param url the url that you want parse. * \param flag is a attribute for this function. Use some enum like * NXML_DOCTYPEFLAG_DOWNLOAD | NXML_DOCTYPEFLAG_RECURSIVE * \return the error code *//***********************************************nxml_error_t	nxml_dtd_parse_url	(nxml_t * nxml,					 char *url,					 int flag);************************************************//**  * This function parses a local DTD document and checks if the nxml_t * document is valid or not. * * \param nxml the struct of your XML Document * \param file the file that you want parse. * \param flag is a attribute for this function. Use some enum like * NXML_DOCTYPEFLAG_DOWNLOAD | NXML_DOCTYPEFLAG_RECURSIVE * \return the error code */nxml_error_t	nxml_dtd_parse_file	(nxml_t * nxml,					 char *file,					 int flag);/**  * This function parses a buffer in memory as a DTD document and checks * if the nxml_t document is valid or not. * * \param nxml the struct of your XML Document * \param buffer the buffer that you want parse. * \param size the size of buffer. If size is 0, the function checks the  * length of your buffer searching a '\\0'. * \param flag is a attribute for this function. Use some enum like * NXML_DOCTYPEFLAG_DOWNLOAD | NXML_DOCTYPEFLAG_RECURSIVE * \return the error code */nxml_error_t	nxml_dtd_parse_buffer	(nxml_t * nxml,					 char *buffer,					 size_t size,					 int flag);/* WRITE FUNCTIONS **********************************************************//** * This function writes the data struct in a local file. * \param nxml the nxml data strut * \param file the local file * \return the error code */nxml_error_t	nxml_write_file		(nxml_t *nxml,					 char *file);/** * This function writes the data struct in a buffer. * \code * char *buffer; * buffer=NULL; // This is important! * nxml_write_buffer(nxml, &buffer); * \endcode * * The buffer must be NULL. * * \param nxml * \param buffer the memory buffer * \return the error code *//*nxml_error_t	nxml_write_buffer	(nxml_t *nxml,					 char **buffer);*//* FREE FUNCTIONS ************************************************************//** * This function removes the data in a structure nxml_t and makes it clean for * another usage. * \param nxml the pointer to you data struct. * \return the error code. */nxml_error_t	nxml_empty		(nxml_t * nxml);/**  * This function frees the memory of a nxml_t *element. After the free, * your data struct is not useful. If you want erase the internal data, use * nxml_empty function * * \param nxml the pointer to your data struct. * \return the error code. */nxml_error_t	nxml_free		(nxml_t * nxml);/** * This function removes the data in a structure nxml_doctype_t and makes  * it clean for another usage (another parsing action). * * \param doctype the pointer to you data struct. * \return the error code. */nxml_error_t	nxml_empty_doctype	(nxml_doctype_t * doctype);/**  * This function frees the memory of a nxml_doctype_t *element. After the free, * your data struct is not useful. If you want erase the internal data, use * nxml_empty_doctype function * * \param doctype the pointer to you data struct. * \return the error code. */nxml_error_t	nxml_free_doctype	(nxml_doctype_t *doctype);/** * This function frees the memory of a nxml_data_t *element and any its * children and its attributes. * * \param data the pointer to you data struct. * \return the error code */nxml_error_t	nxml_free_data		(nxml_data_t *data);/** * This function frees the memory of a nxml_attr_t *element. * * \param data the pointer to you data struct. * \return the error code */nxml_error_t	nxml_free_attribute	(nxml_attr_t *data);/** * This function frees the memory of a nxml_namespace_t *element. * * \param data the pointer to you data struct. * \return the error code */nxml_error_t	nxml_free_namespace	(nxml_namespace_t *data);/* EDIT FUNCTIONS ***********************************************************////** * This function returns the root element of xml data struct. * \code * nxml_t *nxml; * nxml_data_t *root; * * nxml_new(&nxml); * nxml_parser_file(nxml, "file.xml"); * nxml_root_element(nxml, &root); * printf("%p\n",root); * nxml_free(nxml); * \endcode * * \param nxml the data struct * \param element the pointer to your nxml_data_t struct * \return the error code */nxml_error_t	nxml_root_element	(nxml_t *nxml,					 nxml_data_t **element);/** * This function searchs the request element in the children of the data struct. * \code * nxml_t *nxml; * nxml_data_t *root; * * nxml_new(&nxml); * nxml_parser_file(nxml, "file.xml"); * nxml_find_element(nxml, NULL, "hello_world", &root); * printf("%p\n",root); * nxml_free(nxml); * \endcode * * \param nxml the data struct * \param parent the data struct nxml_data_t of parent. If it is NULL, this  * function searchs in the root element level. * \param name the name of the node that you want. * \param element the pointer to your nxml_data_t struct. If element will be * NULL, the item that you want does not exist. * \return the error code */nxml_error_t	nxml_find_element	(nxml_t *nxml,					 nxml_data_t *parent,					 char *name, 					 nxml_data_t **element);/** * This function searchs the first doctype element in the nxml_t document. * * \param nxml the data struct * \param doctype the pointer to your nxml_doctype_t struct. If element will be * NULL, the item that you want does not exist. * \return the error code *//*nxml_error_t	nxml_doctype_element	(nxml_t *nxml,

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区日韩欧美| 国产精品久久久99| 国产91高潮流白浆在线麻豆| 777xxx欧美| 99精品桃花视频在线观看| 久久aⅴ国产欧美74aaa| 亚洲一区免费视频| 国产亚洲精品福利| 欧美成人性福生活免费看| 色婷婷av一区二区三区大白胸| 精品一区二区三区的国产在线播放 | 欧美高清在线精品一区| 91精品国产综合久久久久久| 日本乱码高清不卡字幕| 成人av在线播放网址| 国产一区不卡视频| 免费高清在线一区| 婷婷激情综合网| 亚洲一二三专区| 亚洲欧美另类小说视频| 国产精品你懂的在线| 久久精品欧美一区二区三区麻豆 | 久久久精品国产免费观看同学| 欧美精品久久一区| 欧美视频完全免费看| 色婷婷av久久久久久久| 91香蕉视频mp4| 91精品国产91久久久久久最新毛片| 色综合天天综合狠狠| 国产91丝袜在线观看| 国产黑丝在线一区二区三区| 国产一区二区美女诱惑| 精品亚洲成av人在线观看| 免费黄网站欧美| 日本午夜精品一区二区三区电影| 亚洲一本大道在线| 五月开心婷婷久久| 三级影片在线观看欧美日韩一区二区| 亚洲制服丝袜一区| 亚洲高清免费观看| 国产98色在线|日韩| 免费黄网站欧美| 精品亚洲成a人在线观看| 一区二区欧美视频| 日本一区二区三区在线不卡| 亚洲欧洲日产国码二区| 91原创在线视频| 粗大黑人巨茎大战欧美成人| 国产成人免费视频精品含羞草妖精| 日韩一区在线免费观看| 亚洲黄色录像片| 欧美美女一区二区三区| 欧美一区二区三区四区五区| 欧美成人r级一区二区三区| 久久欧美中文字幕| 中文字幕在线一区免费| 一区二区久久久久久| 日韩国产欧美视频| 久草这里只有精品视频| 国产尤物一区二区| 99免费精品在线| 欧美日韩精品福利| 精品欧美一区二区三区精品久久 | 韩国视频一区二区| 国产91丝袜在线观看| 色婷婷综合久久久久中文| 欧美色图片你懂的| 精品国产一区a| 亚洲女爱视频在线| 日韩精品国产欧美| 国产.精品.日韩.另类.中文.在线.播放| 久久奇米777| 一区二区激情小说| 麻豆一区二区三区| 9人人澡人人爽人人精品| 欧美日韩国产首页| 欧美激情一区二区三区不卡| 亚洲高清在线视频| 国产一区二区中文字幕| 91丨九色丨尤物| 欧美一区二区大片| 国产精品卡一卡二| 轻轻草成人在线| 91视频国产观看| 久久精品在线观看| 婷婷中文字幕一区三区| 成人网在线播放| 欧美一区二区啪啪| 亚洲视频免费看| 久久国产精品免费| 欧美亚洲国产bt| 欧美国产精品中文字幕| 亚洲图片激情小说| 国产真实乱对白精彩久久| 91国内精品野花午夜精品| 国产精品国产三级国产a| 亚洲一区二区不卡免费| 大胆欧美人体老妇| 久久免费午夜影院| 日韩成人av影视| 99久久er热在这里只有精品15| 日韩欧美国产wwwww| 亚洲男帅同性gay1069| 91国在线观看| 亚洲美女一区二区三区| 九一九一国产精品| 欧美色图激情小说| 亚洲欧洲日韩一区二区三区| 国产在线精品免费av| 制服视频三区第一页精品| 亚洲品质自拍视频网站| 国产成都精品91一区二区三| 日韩精品影音先锋| 奇米精品一区二区三区在线观看| 91在线视频观看| 国产精品乱子久久久久| 国产精一区二区三区| 亚洲精品一区二区三区福利| 亚洲成人激情社区| 欧洲另类一二三四区| 亚洲乱码国产乱码精品精可以看| 成人免费高清在线| 亚洲国产精品传媒在线观看| 国产麻豆精品theporn| 精品少妇一区二区三区日产乱码 | 欧美色综合影院| 1024成人网色www| av爱爱亚洲一区| 亚洲日本免费电影| 色综合久久综合网| 夜夜操天天操亚洲| 欧美性xxxxxxxx| 亚洲国产日韩在线一区模特| 91黄色免费版| 亚洲成av人片观看| 欧美日韩免费观看一区三区| 亚洲一区二区三区四区不卡| 欧美午夜精品一区| 亚洲成人在线观看视频| 欧美色大人视频| 午夜av一区二区| 日韩欧美123| 国内精品国产三级国产a久久| 精品国产乱码久久久久久牛牛| 国产精品亚洲午夜一区二区三区| 国产99久久久国产精品潘金| 亚洲黄色性网站| 一区二区三区免费在线观看| 亚洲一区免费视频| 国产日产欧美一区| 欧美日韩一区二区欧美激情| 国产91精品一区二区麻豆网站| 亚洲一区在线观看免费观看电影高清 | 欧美精品第一页| 国产成人福利片| av日韩在线网站| 依依成人精品视频| 欧美日韩精品高清| 狠狠色丁香久久婷婷综合丁香| 久久久久久夜精品精品免费| proumb性欧美在线观看| 一区二区三区中文字幕精品精品| 欧美日韩国产高清一区二区三区 | 九一九一国产精品| 国产精品狼人久久影院观看方式| 色婷婷久久久久swag精品| 日韩经典中文字幕一区| 欧美mv日韩mv国产网站| 成人久久18免费网站麻豆| 亚洲一区二区欧美日韩| 日韩欧美视频一区| 不卡的电影网站| 午夜精品久久久久久久99樱桃| 久久中文娱乐网| 91福利小视频| 精品一区二区三区香蕉蜜桃 | 在线视频国内一区二区| 视频一区免费在线观看| 日本一区二区免费在线| 欧美色综合久久| 国产成人综合亚洲91猫咪| 亚洲国产一区二区视频| www激情久久| 欧美日韩免费观看一区三区| 国产成人av影院| 爽好久久久欧美精品| 中文幕一区二区三区久久蜜桃| 欧美精品第一页| 91视频一区二区三区| 精品一区二区三区久久久| 亚洲摸摸操操av| 国产亚洲成年网址在线观看| 欧美日韩国产另类一区| 成人午夜伦理影院| 蜜桃精品在线观看| 亚洲在线视频免费观看| 亚洲国产精品高清| 日韩一级片在线观看| 色狠狠综合天天综合综合| 国产麻豆精品视频|