backport: StringPart's extra type to uintptr_t
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 1m29s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 1m29s
This commit is contained in:
parent
8eb0578454
commit
8a2dd6770a
1 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
// Standard library includes.
|
// Standard library includes.
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
// Third-party includes.
|
// Third-party includes.
|
||||||
#include <SimpleArchiver/src/data_structures/linked_list.h>
|
#include <SimpleArchiver/src/data_structures/linked_list.h>
|
||||||
|
@ -26,7 +27,7 @@
|
||||||
typedef struct C_SIMPLE_HTTP_String_Part {
|
typedef struct C_SIMPLE_HTTP_String_Part {
|
||||||
char *buf;
|
char *buf;
|
||||||
size_t size;
|
size_t size;
|
||||||
size_t extra;
|
uintptr_t extra;
|
||||||
} C_SIMPLE_HTTP_String_Part;
|
} C_SIMPLE_HTTP_String_Part;
|
||||||
|
|
||||||
void c_simple_http_cleanup_attr_string_part(C_SIMPLE_HTTP_String_Part **);
|
void c_simple_http_cleanup_attr_string_part(C_SIMPLE_HTTP_String_Part **);
|
||||||
|
|
Loading…
Reference in a new issue