From 4e1eb3d06f892ce3c259326c8336b09169ba0fa5 Mon Sep 17 00:00:00 2001 From: leitner Date: Mon, 20 Jan 2025 18:47:18 +0000 Subject: [PATCH] include cleanup --- scan/scan_asn1derlength.c | 2 +- scan/scan_asn1dertag.c | 2 +- scan/scan_utf8.c | 2 +- scan/scan_utf8_sem.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scan/scan_asn1derlength.c b/scan/scan_asn1derlength.c index 864cd53..f8d59b6 100644 --- a/scan/scan_asn1derlength.c +++ b/scan/scan_asn1derlength.c @@ -1,4 +1,4 @@ -#include "scan.h" +#include /* ASN.1 DER encoded length: * if (value<=0x80): diff --git a/scan/scan_asn1dertag.c b/scan/scan_asn1dertag.c index 9ab7fd7..941bd26 100644 --- a/scan/scan_asn1dertag.c +++ b/scan/scan_asn1dertag.c @@ -1,4 +1,4 @@ -#include "scan.h" +#include /* ASN.1 DER tag encoding parser. * Write value as big endian series of bytes, each containing seven diff --git a/scan/scan_utf8.c b/scan/scan_utf8.c index cc1268b..e54a7e6 100644 --- a/scan/scan_utf8.c +++ b/scan/scan_utf8.c @@ -1,4 +1,4 @@ -#include "scan.h" +#include size_t scan_utf8(const char* in,size_t len,uint32_t* num) { uint32_t i,k,m; diff --git a/scan/scan_utf8_sem.c b/scan/scan_utf8_sem.c index 1a216d3..c329462 100644 --- a/scan/scan_utf8_sem.c +++ b/scan/scan_utf8_sem.c @@ -1,4 +1,4 @@ -#include "scan.h" +#include size_t scan_utf8_sem(const char* in,size_t len,uint32_t* num) { uint32_t tmp=0;