diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-12-10 15:45:38 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-12-10 16:22:30 -0500 |
| commit | 97a9b70bc2f779b9267d02c255628fd7895a53b3 (patch) | |
| tree | 2185cb60964d38345b1de220027476ff6af70d20 /pk.h.in | |
| parent | a3cc7699c56ae324733bd7c4c4808090b28a2377 (diff) | |
pkstn: first-pass
Diffstat (limited to 'pk.h.in')
| -rw-r--r-- | pk.h.in | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -28,6 +28,7 @@ * # define PK_IMPL_STR * # define PK_IMPL_EV * # define PK_IMPL_ARR +* # define PK_IMPL_STN * #include "pk.h" * ``` * @@ -163,6 +164,12 @@ * d[0] = ...; * ``` * +******************************************************************************** +* pkstn.h: def PK_IMPL_STN before including pk.h to enable ad-hoc. +* +* Provides a thorough interface for interacting with the `stoi` family of +* procedures. +* *******************************************************************************/ #define PK_VERSION "@@PK_VERSION@@" @@ -183,4 +190,7 @@ # ifndef PK_IMPL_ARR # define PK_IMPL_ARR # endif +# ifndef PK_IMPL_STN +# define PK_IMPL_STN +# endif #endif |
