4 ms·
I've often thought that if C just had a syntax like Go definding method, C would be much easier to write. uint16_t (MyStruct* s) some_func() { .. } uint16
by Naru41 1y ago
I've often thought that if C just had a syntax like Go definding method, C would be much easier to write.
uint16_t (MyStruct* s) some_func() {
..
}
uint16_t MyStruct_some_func(MyStruct* s) {
..
}
(I guess I should just use C++... but C++ is overwhelmed in many ways)