Adoranda/include/util.h

9 lines
344 B
C
Raw Normal View History

#pragma once
/*wait for a specified input key*/
2021-08-27 22:50:00 +02:00
void wait_for_input(int input);
int rand_range(int low, int high);
void format_text_opt(int x, int y, int width, int height, const int color, char const *format, ...);
char *word_boundary_before(char *str, char *limit);
2022-05-22 16:46:31 +02:00
char *skip_spaces(char *str);
int yes_no_question(char const *format, ...);