top | item 46490518

(no title)

widdershins | 1 month ago

I don't find that convention unusual. That's how I (and everyone at my company) writes code every day. If an argument is a pointer, that means it may be null. If it may not be null, it should be a reference.

discuss

order

amelius|1 month ago

And the libraries that you use?

E.g.,

std::size_t std::strlen(const char* str);