]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - Debug/print/print.h
Changing decToInt to numToInt (adds support for Hex number interpreter)
[kiibohd-controller.git] / Debug / print / print.h
index 14628f6dfacf78c16308ef1903da9bc791d49396..c3494328b6dc97dea09cb7d723ad75ba05f63302 100644 (file)
@@ -114,7 +114,7 @@ void hex32ToStr_op( uint32_t in, char*  out, uint8_t op );
 void revsStr      ( char*  in );
 uint16_t lenStr   ( char*  in );
 int16_t eqStr     ( char*  str1, char* str2 ); // Returns -1 if identical, last character of str1 comparison (0 if str1 is like str2)
-int decToInt      ( char* in ); // Returns the int representation of a string
+int numToInt      ( char* in ); // Returns the int representation of a string
 
 #endif