mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 05:11:46 +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);
|
|
|