updated rect class and added some documentation

This commit is contained in:
herbglitch 2023-06-23 23:07:39 -06:00
parent 2b02bf9d2e
commit 3565a5cf15
3 changed files with 74 additions and 0 deletions

View file

@ -82,6 +82,8 @@ uint8_t ARC_String_Equals(ARC_String *first, ARC_String *second);
* @param string ARC_string to check
* @param cstring cstring to check
* @param length length of cstring
*
* @return 1 if match, 0 if they don't match
*/
uint8_t ARC_String_EqualsCString(ARC_String *string, const char *cstring, uint64_t length);