minify-html/notes/code/scope-naming.md

336 B

Scope naming

Public

int hb_sub_function_name(int a, int b);

Internal use only

Used across multiple files but should only be used by this project's code.

int _hb_sub_function_name(int a, int b);

Within same file only

// Don't declare in header file
static int _function_name(int a, int b) {}