diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-08-25 16:55:24 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-08-25 16:55:24 (GMT) |
commit | 41dcf8a45d61108fef1f545ecdee5d79d8135089 (patch) | |
tree | 358c8a9b85e3d582ebe8e0f68c208785a4801517 /src/common/szstr.h | |
parent | f505830e800e4061d6e57c2b0769f956e70a2d84 (diff) |
Restore an improved cURL support.
Diffstat (limited to 'src/common/szstr.h')
-rw-r--r-- | src/common/szstr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/szstr.h b/src/common/szstr.h index 406a9f1..c48d81f 100644 --- a/src/common/szstr.h +++ b/src/common/szstr.h @@ -54,7 +54,7 @@ typedef struct _sized_string_t typedef sized_string_t sized_binary_t; - +/* #define init_szstr(s) \ do \ { \ @@ -62,6 +62,7 @@ typedef sized_string_t sized_binary_t; (s)->len = 0; \ } \ while (0) +*/ #define szstrdup(dst, src) \ do \ @@ -74,6 +75,7 @@ typedef sized_string_t sized_binary_t; #define copy_szstr(d, s) (d) = (s); +/* #define exit_szstr(s) \ do \ { \ @@ -84,6 +86,7 @@ typedef sized_string_t sized_binary_t; } \ } \ while (0) +*/ #define szstrcmp(s1, s2) \ ({ \ |