d7b8c8436b55a4f08f46a7caae8bf3ab88773f9f jcasper Fri May 17 13:40:41 2019 -0700 Changes in response to code review, refs #23481 diff --git src/inc/obscure.h src/inc/obscure.h index 9d95d17..241628e 100644 --- src/inc/obscure.h +++ src/inc/obscure.h @@ -16,34 +16,34 @@ int digitsBaseTen(int x); /* Return number of digits base 10. */ void sprintLongWithCommas(char *s, long long l); /* Print out a long number with commas a thousands, millions, etc. */ void printLongWithCommas(FILE *f, long long l); /* Print out a long number with commas a thousands, millions, etc. */ void sprintWithGreekByte(char *s, int slength, long long size); /* Numbers formatted with PB, TB, GB, MB, KB, B */ void printWithGreekByte(FILE *f, long long l); /* Print with formatting in gigabyte, terabyte, etc. */ -void sprintWithSiBaseUnit(char *s, int slength, long long size); +void sprintWithMetricBaseUnit(char *s, int slength, long long size); /* Numbers formatted with Pb, Tb, Gb, Mb, kb, bp */ -void printWithSiBaseUnit(FILE *f, long long l); +void printWithMetricBaseUnit(FILE *f, long long l); /* Print with formatting in megabase, kilobase, etc. */ void writeGulp(char *file, char *buf, int size); /* Write out a bunch of memory. */ void readInGulp(char *fileName, char **retBuf, size_t *retSize); /* Read whole file in one big gulp. */ void readAllWords(char *fileName, char ***retWords, int *retWordCount, char **retBuf); /* Read in whole file and break it into words. You need to freeMem both * *retWordCount and *retBuf when done. */ int countWordsInFile(char *fileName); /* Count number of words in file. */