blob: c8ffa94cc4b9484ea6fcc7985506eef4d4b8fd37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef NVIM_SHA256_H
#define NVIM_SHA256_H
typedef struct {
uint32_t total[2];
uint32_t state[8];
char_u buffer[64];
} context_sha256_T;
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "sha256.h.generated.h"
#endif
#endif // NVIM_SHA256_H
|