Skip to main content

priv/c_src/lexbor/dom/base.h

/*
 * Copyright (C) 2019-2026 Alexander Borisov
 *
 * Author: Alexander Borisov <borisov@lexbor.com>
 */

#ifndef LEXBOR_DOM_BASE_H
#define LEXBOR_DOM_BASE_H

#ifdef __cplusplus
extern "C" {
#endif


#include "lexbor/core/base.h"


#define LXB_DOM_VERSION_MAJOR 2
#define LXB_DOM_VERSION_MINOR 0
#define LXB_DOM_VERSION_PATCH 0

#define LXB_DOM_VERSION_STRING                                                 \
    LEXBOR_STRINGIZE(LXB_DOM_VERSION_MAJOR) "."                                \
    LEXBOR_STRINGIZE(LXB_DOM_VERSION_MINOR) "."                                \
    LEXBOR_STRINGIZE(LXB_DOM_VERSION_PATCH)


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

#endif /* LEXBOR_DOM_BASE_H */