php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
base.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019 Alexander Borisov
3 *
4 * Author: Alexander Borisov <borisov@lexbor.com>
5 */
6
7#ifndef LEXBOR_NS_BASE_H
8#define LEXBOR_NS_BASE_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14
15#include "lexbor/core/base.h"
16
17
18#define LXB_NS_VERSION_MAJOR 1
19#define LXB_NS_VERSION_MINOR 2
20#define LXB_NS_VERSION_PATCH 0
21
22#define LXB_NS_VERSION_STRING \
23 LEXBOR_STRINGIZE(LXB_NS_VERSION_MAJOR) "." \
24 LEXBOR_STRINGIZE(LXB_NS_VERSION_MINOR) "." \
25 LEXBOR_STRINGIZE(LXB_NS_VERSION_PATCH)
26
27
28#ifdef __cplusplus
29} /* extern "C" */
30#endif
31
32#endif /* LEXBOR_NS_BASE_H */