8 lines
148 B
C
8 lines
148 B
C
#ifndef TPM_H
|
|
#define TPM_H
|
|
#include <stddef.h>
|
|
|
|
int tpm_nvwrite(char* index, char* bytes);
|
|
const char* tpm_nvread(char* index, char* size);
|
|
|
|
#endif |