aboutsummaryrefslogtreecommitdiff
path: root/c/wcharptr.cpp
AgeCommit message (Collapse)Author
2022-08-06Update Hungarian notation for buffer sizes.John Ankarström
For string lengths EXCLUDING NUL, I use len, whereas cb and cch are used for string lengths INCLUDING NUL. cb = byte count = sizeof(a) = narrow string length cch = character count = sizeof(a)/sizeof(*a) = string length cb and cch are equivalent for narrow strings. I prefer cch.
2022-08-06Rearrange source.John Ankarström
2022-08-04Use C++ casts, nullptr.John Ankarström
2022-08-03Use Pascal case for all functions.John Ankarström
2022-08-03Split common.h to util.h, wcharptr.h and win.h.John Ankarström