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,12 +1,12 @@
#include "likely.h"
#include "safemult.h"
#include "array.h"
#include <libowfat/compiler.h>
#include <libowfat/safemult.h>
#include <libowfat/array.h>
/* I'm not sure I understand what this function is good for */
void array_truncate(array* x,uint64 membersize,int64 len) {
uint64 wanted;
if (__unlikely(len<0)) return;
if (__unlikely(!umult64(membersize,len,&wanted))) return;
if (__unlikely(wanted > x->initialized)) return;
if (unlikely(len<0)) return;
if (unlikely(!umult64(membersize,len,&wanted))) return;
if (unlikely(wanted > x->initialized)) return;
x->initialized=wanted;
}