Function casing cc4m_logo_inline

IDNAMING-6
TitleUser-defined functions and methods shall be lowerCamelCased.
PriorityRecommended
Severity level8
DescriptionUser-defined functions and methods shall be lowerCamelCased. This excludes a class's constructor because it must be named after its class.
RationaleConsistency in function naming improves readability of the code.

Avoid:

compute_values()
GetBestCandidates()

Instead use:

computeValues()
getBestCandidates()