mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 00:13:12 +03:00
6 lines
159 B
C
6 lines
159 B
C
|
|
/* Implements a constant time version of strcmp()
|
|
* Will return 1 if a and b are equal, 0 if they are not */
|
|
int slow_equals(const char* a, const char* b);
|
|
|