source: S-port/trunk/Core/Inc/xml.h

Last change on this file was 1, checked in by AlexLir, 3 years ago
File size: 500 bytes
Line 
1#ifndef __XML_H
2#define __XML_H
3
4#include "main.h"
5#include "fatfs.h"
6
7typedef enum {
8 XML_OK,
9 XML_ERR,
10 XML_ERR_NO_FILE
11}xml_status_typeDef;
12
13uint32_t _substr(char *str, uint32_t PosStart, char end, char *s);
14xml_status_typeDef xml_get_tag(const TCHAR *path, const char *str_tag, const char *str_attr, const char *tag, char *value);
15xml_status_typeDef xml_get_attr(const TCHAR *path, const char *str_tag, const char *str_attr, const char *attr, char *value);
16
17#endif /* __XML_H */
Note: See TracBrowser for help on using the repository browser.