1/* 2 * set.h - High-level handler to set boot nonce 3 * 4 * Copyright (c) 2017 Siguza & tihmstar 5 */ 6 7#ifndef SET_H 8#define SET_H 9 10#include <stdbool.h> 11 12bool set_generator(const char *gen); 13 14bool dump_apticket(const char *to); 15 16#endif 17 18