Open lionel- opened 4 years ago
No hiding of struct and enum qualifiers.
struct
enum
No hiding of pointer types. The * is an indication that the memory that is pointed to might change at any time (https://stackoverflow.com/questions/3965279/opaque-c-structs-how-should-they-be-declared/3965308#3965308)
*
sexp* is an exception to the first rule because of how ubiquitous it is? Or maybe because it's a pointer to an opaque type?
sexp*
No hiding of
struct
andenum
qualifiers.No hiding of pointer types. The
*
is an indication that the memory that is pointed to might change at any time (https://stackoverflow.com/questions/3965279/opaque-c-structs-how-should-they-be-declared/3965308#3965308)sexp*
is an exception to the first rule because of how ubiquitous it is? Or maybe because it's a pointer to an opaque type?