mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
4d0082fa43
Also fixes some tidy issues Not sure why my local clang-tidy doesn't complain
10 lines
107 B
C
10 lines
107 B
C
#ifndef NTT_H
|
|
#define NTT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void ntt(uint16_t *p);
|
|
void invntt(uint16_t *a);
|
|
|
|
#endif
|