aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-12-01 12:01:55 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-12-01 12:01:55 +0000
commiteb1d1037112cac92ff7f6cd3d2627e1d508674ce (patch)
tree14824f450e7cbc77ba47a13367367afef6c89075
parent2652ea4f998fb0cff7ca4fc807249d78ba482e8d (diff)
Improve comment formatting with curl_options.odin
-rw-r--r--vendor/curl/curl_options.odin9
1 files changed, 5 insertions, 4 deletions
diff --git a/vendor/curl/curl_options.odin b/vendor/curl/curl_options.odin
index 8425a53ee..4d231bae5 100644
--- a/vendor/curl/curl_options.odin
+++ b/vendor/curl/curl_options.odin
@@ -17,13 +17,14 @@ easytype :: enum c.int {
easyoptionflags :: distinct bit_set[easyoptionflag; c.uint]
easyoptionflag :: enum c.uint {
- /* "alias" means it is provided for old programs to remain functional,
- we prefer another name */
+ /* "alias" means it is provided for old programs to remain functional, we prefer another name */
ALIAS = 0,
}
-/* The CURLOPTTYPE_* id ranges can still be used to figure out what type/size
- to use for curl_easy_setopt() for the given id */
+/*
+ The CURLOPTTYPE_* id ranges can still be used to figure out what type/size
+ to use for curl_easy_setopt() for the given id
+ */
easyoption :: struct {
name: cstring,
id: option,