9060457fac
Now that strings have the correct size, but no trailing \0, puts() cannot safely be used any more.
21 lines
444 B
C
21 lines
444 B
C
/*
|
|
* Utility functions shared by all the demo programs.
|
|
*/
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#define MAX_INPUT_SIZE 4096 /* max size of all input buffers in the demo */
|
|
|
|
void print_hex(const void *bin, const size_t bin_len);
|
|
|
|
size_t prompt_input(const char *prompt, char *input, const size_t max_input_len,
|
|
int variable_length);
|
|
|
|
void print_verification(int r);
|
|
|
|
void init(void);
|
|
|
|
#endif /* UTILS_H */
|