MCPcopy Create free account
hub / github.com/CruiserOne/Astrolog / PrintCh

Function PrintCh

general.cpp:1294–1300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1292// Print a single character on the screen.
1293
1294void PrintCh(char ch)
1295{
1296 char sz[2];
1297
1298 sz[0] = ch; sz[1] = chNull; // Treat char as a string of length one.
1299 PrintSz(sz); // Then call above to print the string.
1300}
1301
1302
1303// A simple procedure used throughout the program: Print a particular

Callers 15

ChartListingRelationFunction · 0.85
ChartMidpointRelationFunction · 0.85
PrintInDayEventFunction · 0.85
PrintAspectFunction · 0.85
ChartAstroGraphRelationFunction · 0.85
ChartCalendarMonthFunction · 0.85
DisplayRelationFunction · 0.85
PrintSFunction · 0.85
PrintObjectsFunction · 0.85
DisplayArabicFunction · 0.85
ChartTransitGraphFunction · 0.85
ChartHorizonRisingFunction · 0.85

Calls 1

PrintSzFunction · 0.85

Tested by

no test coverage detected