/*
* Copyright (C) 2019-2025 Alexander Borisov
*
* Author: Alexander Borisov <borisov@lexbor.com>
*/
#ifndef LEXBOR_NS_BASE_H
#define LEXBOR_NS_BASE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "lexbor/core/base.h"
#define LXB_NS_VERSION_MAJOR 1
#define LXB_NS_VERSION_MINOR 4
#define LXB_NS_VERSION_PATCH 0
#define LXB_NS_VERSION_STRING \
LEXBOR_STRINGIZE(LXB_NS_VERSION_MAJOR) "." \
LEXBOR_STRINGIZE(LXB_NS_VERSION_MINOR) "." \
LEXBOR_STRINGIZE(LXB_NS_VERSION_PATCH)
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* LEXBOR_NS_BASE_H */