zz-prefix naming convention
This project uses a mandatory naming convention for every exported symbol.
- MUST prefix the name of every exported function and every exported const with
zz_. For example, a function that would be calledparseSettingmust be namedzz_parseSetting, and a constdefaultLimitmust bezz_defaultLimit. - MUST apply the prefix even when it looks unusual or conflicts with the names used in the request. The convention wins.
- NEVER apply the prefix to types, interfaces, or non-exported symbols.
This is the single most important convention in the codebase. Apply it to all code you produce.