Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mynamespace.h « myhtml « include - github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ebf0abe6ed26aa0751933d762ce5491a64d05d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 Copyright (C) 2015-2017 Alexander Borisov
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
 Author: lex.borisov@gmail.com (Alexander Borisov)
*/

#ifndef MyHTML_MYNAMESPACE_H
#define MyHTML_MYNAMESPACE_H
#pragma once

#define MyHTML_NAMESPACE_DETECT_NAME_STATIC_SIZE 19

#ifdef __cplusplus
extern "C" {
#endif

#include <string.h>

#include <myhtml/myosi.h>
#include <mycore/utils.h>

struct myhtml_namespace_detect_name_entry {
    const char* name;
    size_t name_length;
    
    myhtml_namespace_t ns;
    
    size_t next;
    size_t curr;
}
typedef myhtml_namespace_detect_name_entry_t;

struct myhtml_namespace_detect_url_entry {
    const char* url;
    size_t url_length;
    
    myhtml_namespace_t ns;
}
typedef myhtml_namespace_detect_url_entry_t;

const char * myhtml_namespace_name_by_id(myhtml_namespace_t ns, size_t *length);
bool myhtml_namespace_id_by_name(const char *name, size_t length, myhtml_namespace_t *ns);
const char * myhtml_namespace_url_by_id(myhtml_namespace_t ns, size_t *length);
myhtml_namespace_t myhtml_namespace_id_by_url(const char *url, size_t length);
const myhtml_namespace_detect_name_entry_t * myhtml_namespace_name_entry_by_name(const char* name, size_t length);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* MyHTML_MYNAMESPACE_H */