Fun 0.41.5
The programming language that makes You have fun
Loading...
Searching...
No Matches
ini.c
Go to the documentation of this file.
1/*
2 * This file is part of the Fun programming language.
3 * https://fun-lang.xyz/
4 *
5 * Copyright 2025 Johannes Findeisen <you@hanez.org>
6 * Licensed under the terms of the Apache-2.0 license.
7 * https://opensource.org/license/apache-2-0
8 */
9
17
18#ifdef FUN_WITH_INI
19#if defined(__has_include)
20#if __has_include(<iniparser/iniparser.h>)
21#include <iniparser/dictionary.h>
22#include <iniparser/iniparser.h>
23#elif __has_include(<iniparser.h>)
24#include <dictionary.h>
25#include <iniparser.h>
26#else
27#error "iniparser headers not found"
28#endif
29#else
30#include <iniparser/dictionary.h>
31#include <iniparser/iniparser.h>
32#endif
33#include "vm/ini/handles.h"
34#endif
INI handle registry for iniparser 4.2.6 used by INI VM opcodes.