mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-11 00:26:13 +03:00
11 lines
132 B
C
11 lines
132 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t f(size_t n, uint8_t *p) {
|
|
return n == 0;
|
|
}
|
|
|
|
uint8_t g(uint8_t x) {
|
|
return x;
|
|
}
|