changelog: - make hex_utils includes work across C files - have Makefile use `build/$(ARCH)` instead of `build/bin/binary-$(ARCH)` - small bugfixes - add is_ti50.c & place for future tools - global KERNVER_TYPE variable (if kernver.h is included)
8 lines
140 B
C
8 lines
140 B
C
#ifndef TPM_H
|
|
#define TPM_H
|
|
#include <stddef.h>
|
|
|
|
int tpm_nvwrite(char* index, char* bytes);
|
|
int tpm_nvread(char* index, char* size);
|
|
|
|
#endif |