MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / myToUpper

Function myToUpper

dep/adflib/src/adf_dir.c:820–832  ·  view source on GitHub ↗

* myToUpper * */

Source from the content-addressed store, hash-verified

818 *
819 */
820 void
821myToUpper( uint8_t *nstr, uint8_t *ostr, int nlen, BOOL intl )
822{
823 int i;
824
825 if (intl)
826 for(i=0; i<nlen; i++)
827 nstr[i]=adfIntlToUpper(ostr[i]);
828 else
829 for(i=0; i<nlen; i++)
830 nstr[i]=adfToUpper(ostr[i]);
831 nstr[nlen]='\0';
832}
833
834
835/*

Callers 3

adfRenameEntryFunction · 0.85
adfNameToEntryBlkFunction · 0.85
adfCreateEntryFunction · 0.85

Calls 2

adfIntlToUpperFunction · 0.85
adfToUpperFunction · 0.85

Tested by

no test coverage detected