Improve comment formatting with curl_options.odin

This commit is contained in:
gingerBill
2025-12-01 12:01:55 +00:00
parent 2652ea4f99
commit eb1d103711

View File

@@ -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,