Clean up a bit

This commit is contained in:
Miloslav Ciz 2025-06-19 02:28:51 +02:00
parent 610c1df0b0
commit a104a12cc4
14 changed files with 207 additions and 62 deletions

View file

@ -5,10 +5,10 @@
Licar: general
This file holds general definitions used by all modules.
This file holds general definitions used by all Licar modules.
All Licar code uses LCR_ (or _LCR_) prefix as a kind of namespace preventing
collision with 3rd party identifiers.
collisions with 3rd party identifiers.
*/
#include <stdint.h>
@ -74,7 +74,7 @@ int _LCR_hexDigitVal(char c)
}
/**
Computes simple hash of a string represented by a function returning next
Computes a simple hash of a string represented by a function returning next
string character, ending at 0 or endChar. This is intended for simple (but
not 100% reliable) string comparison.
*/