blob: eb33eeeadf676f9a282e55c6bdc5bbb1e73f5a84 (
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
|
// vim: tw=80
/******************************************************************************
* PK Single-Header-Library V@@PK_VERSION@@
*
* Author: Jonathan Bradley
* Copyright: © 2024-@@YEAR@@ Jonathan Bradley
* Description:
*
*******************************************************************************
* pkmacros.h:
*
*******************************************************************************
* pkmem-types.h:
*
*******************************************************************************
* pkmem.h:
*
*******************************************************************************
* pkstr.h:
*
******************************************************************************/
#define PK_VERSION "@@PK_VERSION@@"
#ifdef PK_IMPL_ALL
# ifndef PK_IMPL_MEM_TYPES
# define PK_IMPL_MEM_TYPES
# endif
# ifndef PK_IMPL_MEM
# define PK_IMPL_MEM
# endif
# ifndef PK_IMPL_STR
# define PK_IMPL_STR
# endif
#endif
|