move /src/util/intdef.h to /src/util/types.h

This commit is contained in:
2025-10-09 12:05:01 +02:00
parent 27c862c215
commit aa58d931aa
17 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
* Licensed under the MIT Licence. See LICENSE for details */
#include "test.h"
#include "../src/util/intdef.h"
#include "../src/types.h"
uint test_okay = 0;
uint test_fail = 0;

View File

@@ -3,7 +3,7 @@
#pragma once
#include <stdio.h>
#include "../src/util/intdef.h"
#include "../src/types.h"
extern uint test_okay;
extern uint test_fail;

View File

@@ -5,8 +5,8 @@
#include <math.h>
#include <string.h>
#include "../src/types.h"
#include "../src/util/conf.h"
#include "../src/util/intdef.h"
#include "test.h"
void test_conf_procbuf(const char *restrict buf, const char *restrict expect_key, const char *restrict expect_val, int expect_return) {

View File

@@ -2,8 +2,8 @@
* Licensed under the MIT Licence. See LICENSE for details */
#pragma once
#include "../src/types.h"
#include "../src/util/conf.h"
#include "../src/util/intdef.h"
void test_conf_procbuf(const char *restrict buf, const char *restrict expect_key, const char *restrict expect_val, int expect_return);
void test_conf_matchopt(struct conf_entry *restrict opts, usize optc, const char *restrict key, int expect_index);