great include cleanup

This commit is contained in:
leitner
2025-01-20 18:40:47 +00:00
parent def61cd5ce
commit cf32aafe8a
125 changed files with 194 additions and 186 deletions

View File

@@ -1,6 +1,5 @@
#include "byte.h"
#include "buffer.h"
#include "scan.h"
#include <libowfat/byte.h>
#include <libowfat/buffer.h>
#include <string.h> /* for memccpy */

View File

@@ -1,6 +1,5 @@
#include "byte.h"
#include "buffer.h"
#include "scan.h"
#include <libowfat/byte.h>
#include <libowfat/buffer.h>
ssize_t buffer_get_token_pred(buffer* b,char* x,size_t len,
string_predicate p) {

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_put8long(buffer *b,unsigned long l) {
char buf[FMT_8LONG];

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_putlong(buffer *b,signed long l) {
char buf[FMT_LONG];

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_putlonglong(buffer *b,signed long long l) {
char buf[FMT_LONG];

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_putulong(buffer *b,unsigned long l) {
char buf[FMT_ULONG];

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_putulonglong(buffer *b,unsigned long long l) {
char buf[FMT_ULONG];

View File

@@ -1,5 +1,5 @@
#include "buffer.h"
#include "fmt.h"
#include <libowfat/buffer.h>
#include <libowfat/fmt.h>
int buffer_putxlong(buffer *b,unsigned long l) {
char buf[FMT_XLONG];