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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nxml.h

?? libnxml-no-curl-簡化版2007-07-01,一個別很不錯的XML生成和解析程序。
?? H
?? 第 1 頁 / 共 3 頁
字號:
					 nxml_doctype_t **doctype);*//** * This function searchs the request attribute and returns its values. * \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); * if(root) { *   char *str; *   nxml_find_attribute(root, "attribute", &str); *   printf("%s\n",attribute); *   free(str); * } * nxml_free(nxml); * \endcode * * \param data the data struct * \param name the attribute that you want search * \param attribute the pointer to your nxml_attr_t struct. If attribute will * be NULL, the attribute that you want does not exist. * does not exist. * \return the error code */nxml_error_t	nxml_find_attribute	(nxml_data_t *data,					 char *name, 					 nxml_attr_t **attribute);/** * This function searchs the request namespaceibute and returns its values. * * \param data the data struct * \param name the namespace that you want search * \param ns the pointer to your nxml_attr_t struct. If namespace will * be NULL, the namespace that you want does not exist. * does not exist. * \return the error code */nxml_error_t	nxml_find_namespace	(nxml_data_t *data,					 char *name, 					 nxml_namespace_t **ns);/** * This function returns the string of a XML element. * \code * nxml_t *nxml; * nxml_data_t *root; * char *str; * * nxml_new(&nxml); * nxml_parser_file(nxml, "file.xml"); * nxml_find_element(nxml, NULL, "hello_world", &root); * if(root) { *   nxml_get_string(root, &str); *   if(str) { *     printf("Hello_world item contains: %s\n",str); *     free(str); *   } * } * nxml_free(nxml); * \endcode * * \param element the xnml_data_t pointer * \param string the pointer to you char *. You must free it after usage. * \return the error code *//*nxml_error_t	nxml_get_string		(nxml_data_t *element,					 char **string);*//* ERROR FUNCTIONS **********************************************************//** * This function returns a static string with the description of error code * \param err the error code that you need as string * \return a string. Don't free this string! */char *		nxml_strerror		(nxml_error_t err);/** * This function return the line of a error of parse. * \param nxml the pointer to data struct * \param line pointer to your integer. In this pointer will be set the line. * \return the error code *//*nxml_error_t	nxml_line_error		(nxml_t * nxml,					 int *line);*//* EASY FUNCTIONS ***********************************************************//** * This function returns a new nxml_t data. * * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_t data. If it returns NULL, read the err * code. This function use nxml_set_func with nxml_print_generic so the * error will be write in the standard output. *///nxml_t *	nxmle_new_data		(nxml_error_t *err);/** * This function returns a new nxml_t data and parses a remote url document * from http or ftp protocol. This function use nxml_set_func with  * nxml_print_generic so the error will be write in the standard output. *    * * \param url the url that you want parse. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_t data. *//****************************************************************nxml_t *	nxmle_new_data_from_url	(char *url,					 nxml_error_t *err);           ***************************************************//** * This function returns a new nxml_t data and parses a local file. This  * function use nxml_set_func with nxml_print_generic so the error will be * write in the standard output. * * \param file the file that you want parse. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_t data. *//*nxml_t *	nxmle_new_data_from_file					(char *file,					 nxml_error_t *err);*//** * This function returns a new nxml_t data and parses a buffer. This * function use nxml_set_func with nxml_print_generic so the error will be * write in the standard output. * * \param buffer the buffer that you want parse. * \param size the size of buffer. If size is 0, the function checks the  * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_t data. *//*nxml_t *	nxmle_new_data_from_buffer					(char *buffer,					 size_t size,					 nxml_error_t *err);*//** * This function creates and adds a child nxml_data_t to a parent in your  * nxml data struct. * * \param nxml Pointer to your nxml data. * \param parent The parent of new data struct child. If it is NULL, the * child is in the root level. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_data_t *	nxmle_add_new		(nxml_t * nxml,					 nxml_data_t *parent,					 nxml_error_t *err);*//** * This function adds a your nxml_data_t to a parent in your nxml * data struct. * * \param nxml Pointer to your nxml data. * \param parent The parent of new data struct child. If it is NULL, the * child is in the root level. * \param child The you child nxml_data_t struct that you want insert. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_data_t *	nxmle_add_data		(nxml_t * nxml,					 nxml_data_t *parent,					 nxml_data_t *child,					 nxml_error_t *err);*//** * This function creates and adds an attribute nxml_attr_t data to a * nxml_data_t struct in your nxml data struct. * * \param nxml Pointer to your nxml data. * \param element The parent of new nxml_attr_t struct. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_attr_t *	nxmle_add_attribute_new	(nxml_t *nxml,					 nxml_data_t *element,					 nxml_error_t *err);*//** * This function adds an attribute nxml_attr_t data to a * nxml_data_t struct in your nxml data struct. * * \param nxml Pointer to your nxml data. * \param element The parent of your nxml_attr_t struct. * \param attribute Your attribute element. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_attr_t *	nxmle_add_attribute_data					(nxml_t *nxml,					 nxml_data_t *element,					 nxml_attr_t *attribute,					 nxml_error_t *err);*//** * This function creates and adds a namespace nxml_namespace_t data to a * nxml data struct. * * \param nxml Pointer to your nxml data. * \param element The element of in witch you want add the namespace. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_namespace_t * nxmle_add_namespace_new					(nxml_t *nxml,					 nxml_data_t *element,	       				 nxml_error_t *err);*//** * This function adds an namespace nxml_namespace-t data to a nxml data struct. * * \param nxml Pointer to your nxml data. * \param element The element of in witch you want add the namespace. * \param ns Your namespace element. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to a new nxml_data_t data child. *//*nxml_namespace_t * nxmle_add_namespace_data					(nxml_t *nxml,					 nxml_data_t *element,					 nxml_namespace_t *ns,					 nxml_error_t *err);*//** * This function returns the root element of a nxml_t. * * \param nxml Pointer to your nxml data. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to the root element. If NULL the element does not * exist. */nxml_data_t *	nxmle_root_element	(nxml_t *nxml,					 nxml_error_t *err);/** * This function returns the first doctype element of a nxml_t. * * \param nxml Pointer to your nxml data. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to the doctype element. If NULL the element does not * exist. *//*nxml_doctype_t *nxmle_doctype_element	(nxml_t *nxml,					 nxml_error_t *err);*//** * This function returns the nxml_data_t pointer to a element by * a name. * * \param nxml Pointer to your nxml data. * \param parent Pointer to your nxml_data_t parent. If it is NULL, this * function searchs in a root element level. * \param name The name of element that you want. * \param err If err is not NULL, err will be set to the error flag. * \return the pointer to the root element. If NULL the element does not * exist. *//*nxml_data_t *	nxmle_find_element	(nxml_t *nxml,					 nxml_data_t *parent,					 char *name,					 nxml_error_t *err);*//** * This function returns the value of a attribute by a name. * * \param element Pointer to your nxml_data_t. * \param name The name of attribute that you want. * \param err If err is not NULL, err will be set to the error flag. * \return a pointer to a char allocated so you must free it after usage. If * it is NULL, the attribute does not exist. */char *		nxmle_find_attribute	(nxml_data_t *element,					 char *name,					 nxml_error_t *err);/** * This function returns the value of a namespace by a name. * * \param element Pointer to your nxml_data_t. * \param name The name of namespace that you want. * \param err If err is not NULL, err will be set to the error flag. * \return a pointer to a char allocated so you must free it after usage. If * it is NULL, the namespace does not exist. *//*char *		nxmle_find_namespace	(nxml_data_t *element,					 char *name,					 nxml_error_t *err);*//** * This function returns the contain of a element. * * \param element Pointer to your nxml_data_t. * \param err If err is not NULL, err will be set to the error flag. * \return a pointer to a char allocated so you must free it after usage. If * it is NULL, the attribute does not exist. *//*char *		nxmle_get_string	(nxml_data_t *element,					 nxml_error_t *err);*//** * This function writes the data struct in a buffer. * * \param nxml * \param err If err is not NULL, err will be set to the error flag. * \return a pointer to a char allocated so you must free it after usage. *//*char *		nxmle_write_buffer	(nxml_t *nxml, nxml_error_t *err);*//** * This function return the line of a error of parse. * \param nxml the pointer to data struct * \param err If err is not NULL, err will be set to the error flag. * \return the line with the error. *///int		nxmle_line_error	(nxml_t * nxml, nxml_error_t *err);/* Easy functions defined: *///#define		nxmle_remove		nxml_remove//#define		nxmle_remove_attribute	nxml_remove_attribute//#define		nxmle_remove_namespace	nxml_remove_namespace//#define		nxmle_write_file	nxml_write_file#define		nxmle_empty		nxml_empty#define		nxmle_free		nxml_free#define		nxmle_free_data		nxml_free_data#define		nxmle_free_attribute	nxml_free_attribute#define		nxmle_strerror		nxml_strerror#ifdef  __cplusplus}#endif#endif/* EOF */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线不卡中文字幕播放| 久久成人免费日本黄色| 色综合久久综合网| 亚洲欧洲日本在线| 日本久久一区二区三区| 亚洲成av人影院| 日韩视频免费观看高清完整版在线观看 | 国产乱人伦偷精品视频免下载| 日韩欧美在线综合网| 国产成人免费av在线| 国产精品久久久久影院老司| 一本大道久久a久久精二百| 亚洲第一精品在线| 日韩欧美国产不卡| 国产盗摄精品一区二区三区在线| 精品国内片67194| 欧美日韩小视频| 亚洲欧洲精品一区二区精品久久久| 97精品国产97久久久久久久久久久久| 一区二区三区四区视频精品免费 | 麻豆精品一区二区三区| 精品处破学生在线二十三| 国产成人精品免费视频网站| 亚洲欧美一区二区三区久本道91| 欧美视频日韩视频| 国产激情一区二区三区桃花岛亚洲| 亚洲图片激情小说| 日韩一区二区免费高清| 成人成人成人在线视频| 日韩电影在线看| 自拍偷拍国产亚洲| 精品久久久网站| 91福利精品视频| 国产在线一区二区| 亚洲亚洲人成综合网络| 久久久精品tv| 7777精品伊人久久久大香线蕉的| 国产成人aaa| 美女一区二区三区在线观看| 亚洲视频免费在线观看| 久久人人超碰精品| 欧美高清视频一二三区| 成人精品国产一区二区4080| 美女脱光内衣内裤视频久久影院| 尤物av一区二区| 中文字幕免费不卡在线| 日韩欧美国产小视频| 欧美中文字幕一区二区三区亚洲| 国产不卡在线视频| 久久av中文字幕片| 欧美亚洲一区二区在线观看| 亚洲国产精品嫩草影院| 懂色av噜噜一区二区三区av| 欧美日韩亚洲综合在线 | 午夜激情久久久| 国产精品短视频| 久久综合九色综合97婷婷女人 | 成人自拍视频在线观看| 日本va欧美va欧美va精品| 亚洲激情av在线| 国产精品理伦片| 精品sm捆绑视频| 欧美一级高清大全免费观看| 欧美色视频一区| 欧美伊人精品成人久久综合97 | 91免费看`日韩一区二区| 国产一区二区0| 久草精品在线观看| 极品少妇xxxx偷拍精品少妇| 日韩主播视频在线| 欧美精品在线视频| 国产在线日韩欧美| 中文av一区特黄| 日韩一级大片在线| 日韩精品一区二区三区三区免费| 色一情一乱一乱一91av| 99r国产精品| 色婷婷亚洲一区二区三区| 99国产精品久久久久| 99久久综合色| 91免费视频网| 欧美日韩视频在线第一区| 欧美日韩精品一区二区三区蜜桃| 欧美中文字幕亚洲一区二区va在线| 91福利国产精品| 91精品国产乱码久久蜜臀| 91麻豆精品国产91久久久久| 91精品国产一区二区| 日韩欧美中文字幕制服| 26uuu另类欧美| 国产精品色噜噜| 亚洲午夜视频在线观看| 日本成人在线视频网站| 国产主播一区二区三区| voyeur盗摄精品| 欧美亚洲日本一区| 日韩视频永久免费| 中文字幕久久午夜不卡| 亚洲精品久久7777| 蜜臀va亚洲va欧美va天堂| 韩国视频一区二区| 91蝌蚪porny| 在线观看91精品国产麻豆| 久久美女艺术照精彩视频福利播放| 国产欧美精品在线观看| 美女精品一区二区| 国产精品自在在线| 69堂成人精品免费视频| 欧美一区二区三区思思人| 欧美mv日韩mv亚洲| 国产精品每日更新| 一区二区三区欧美激情| 奇米精品一区二区三区四区| 国产一区二区免费视频| 91国偷自产一区二区三区观看| 欧美精品18+| 亚洲欧洲成人精品av97| 日韩激情av在线| 岛国av在线一区| 欧美久久久久久蜜桃| 久久久久国产免费免费| 亚洲综合在线电影| 狠狠色丁香婷婷综合| 91黄色免费版| 国产视频不卡一区| 日韩在线卡一卡二| 日本高清不卡aⅴ免费网站| 欧美xxxx在线观看| 亚洲一区av在线| 国产69精品一区二区亚洲孕妇| 3d成人动漫网站| ●精品国产综合乱码久久久久| 精品在线亚洲视频| 欧美日韩一区在线观看| 国产精品久99| 精品一区二区三区久久久| 欧美这里有精品| 亚洲天堂中文字幕| 国产精品亚洲人在线观看| 91精品国产综合久久精品app | 一区二区三区在线播放| 国产在线精品视频| 欧美日韩精品一区二区| 日韩一区欧美小说| 成人一区在线观看| 精品播放一区二区| 男男gaygay亚洲| 91精品国产免费| 日韩av一级电影| 欧美丝袜自拍制服另类| 亚洲精品欧美激情| 91啪九色porn原创视频在线观看| 国产亚洲精品福利| 国产在线国偷精品产拍免费yy| 91.com在线观看| 日韩高清中文字幕一区| 色视频一区二区| 亚洲欧美一区二区不卡| 成人免费高清在线| 国产精品国产成人国产三级| 国产高清在线精品| 久久久一区二区| 国产91丝袜在线播放| 久久久综合视频| 国产高清不卡一区| 国产精品国产三级国产三级人妇| 国产福利一区在线| 国产精品国产a| 91看片淫黄大片一级在线观看| 亚洲人成在线观看一区二区| 99久久婷婷国产精品综合| 自拍视频在线观看一区二区| 99视频超级精品| 亚洲自拍偷拍网站| 欧美日韩电影在线| 蜜臀久久99精品久久久久久9| 日韩午夜激情av| 欧美影视一区二区三区| 亚洲成人免费在线观看| 91精品国产免费久久综合| 久久精品72免费观看| 久久免费的精品国产v∧| 成熟亚洲日本毛茸茸凸凹| 综合自拍亚洲综合图不卡区| 欧美伊人久久大香线蕉综合69| 天天影视色香欲综合网老头| 日韩欧美你懂的| 国产91精品一区二区麻豆亚洲| 亚洲摸摸操操av| 欧美理论电影在线| 国内精品在线播放| 中文字幕中文乱码欧美一区二区| 色噜噜偷拍精品综合在线| 亚洲成av人**亚洲成av**| 欧美精品一区二区蜜臀亚洲| caoporen国产精品视频| 五月婷婷久久综合| 国产精品日韩精品欧美在线| 欧美视频自拍偷拍| 国产精品一品二品|