c-iprs/iprs.h

13 lines
223 B
C
Raw Permalink Normal View History

2016-11-01 00:24:47 +00:00
#ifndef IPRS_H
#define IPRS_H
#define TRUE 1
#define FALSE 0
typedef struct Record_struct {
uint8_t* Value;
uint32_t Expires;
uint8_t* Signature;
} Record;
#endif /* IPRS_H */