From 49c7405b6a88e56bb69e12189adb719927343e07 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Mon, 15 Nov 2021 19:37:48 +0000 Subject: Multiple smaller changes. - Remove the background image and libpng dependency - Add a prompt - Add xmalloc with out-of-memory handling - Add beginnings of a rofi-like run cache --- src/string_vec.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/string_vec.h') diff --git a/src/string_vec.h b/src/string_vec.h index b3395ad..7ebcb53 100644 --- a/src/string_vec.h +++ b/src/string_vec.h @@ -3,6 +3,11 @@ #include +struct program { + char *name; + size_t run_count; +}; + struct string_vec { size_t count; size_t size; -- cgit v1.2.3