Details
-
Task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Function names in .c files always use "short names"
whenever the "LUCY_USE_SHORT_NAMES" macro is in effect – e.g. we use
"Sort_mergesort" rather than "lucy_Sort_mergesort".
Within Charmonizer, we should be consistent about using short names
everywhere the "CHAZ_USE_SHORT_NAMES" macro is in effect, but currently
there are lots of places that we don't – e.g. we use "chaz_Test_plan"
rather than "Test_plan" within charmonizer/src/Charmonizer/Test.charm:
void
-chaz_Test_plan(TestBatch *batch)
+Test_plan(TestBatch *batch)