mirror of
https://github.com/zoriya/xmlParser.git
synced 2026-06-03 10:25:52 +00:00
Adding binary and hexa get
This commit is contained in:
@@ -6,6 +6,8 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
int my_str_islower_or_num(const char *str);
|
||||
|
||||
int count_valid_queens_placements(int n);
|
||||
|
||||
char *my_strchr(char *str, char c);
|
||||
|
||||
@@ -31,6 +31,8 @@ node *xml_parse(const char *path);
|
||||
node *xml_getnode(node *parent, const char *name);
|
||||
char *xml_getproperty(node *n, const char *key);
|
||||
int xml_getintprop(node *n, const char *key);
|
||||
int xml_getbinaprop(node *n, const char *key);
|
||||
int xml_gethexaprop(node *n, const char *key);
|
||||
float xml_getfloatprop(node *n, const char *key);
|
||||
int xml_getchildcount(node *n);
|
||||
void xml_destroy(node *n);
|
||||
Reference in New Issue
Block a user