Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
string.h
00001 #define NULL 0 00002 #define TERMINATOR '\r' 00003 #define DELIMITER_CHAR 0x20 00004 00005 enum CompResult { NOTEQUAL, EQUAL }; 00006 enum Result { OK, ERROR }; 00007 00008 void CopyString(char pcSource[], char pcDestination[]); 00009 void AppendString (char pcSourceStr[], char pcDestinationStr[]); 00010 void AppendUIntToString (unsigned int uiValue, char pcDestinationStr[]); 00011 void ReplaceCharactersInString(char pcString[], char cOldChar,char cNewChar); 00012 void UIntToHexStr (unsigned int uiValue, char pcStr[]); 00013 enum CompResult eCompareString(char pcStr1[], char pcStr2[]); 00014 enum Result eHexStringToUInt(char pcStr[],unsigned int *puiValue);
Generated on Tue Aug 16 2022 02:15:49 by
 1.7.2
 1.7.2