// Copyright © Tavian Barnes // SPDX-License-Identifier: 0BSD /** * Configuration and fundamental utilities. */ #ifndef BFS_H #define BFS_H // Standard versions /** Possible __STDC_VERSION__ values. */ #define C95 199409L #define C99 199901L #define C11 201112L #define C17 201710L #define C23 202311L /** Possible _POSIX_C_SOURCE and _POSIX_