diff lib/util.c @ 26:7e10cace67a3

scid: add basic mustache support
author David Demelier <markand@malikania.fr>
date Tue, 02 Aug 2022 13:24:13 +0200
parents f98ea578b1ef
children 43333d18e4b8
line wrap: on
line diff
--- a/lib/util.c	Mon Jul 25 21:22:13 2022 +0200
+++ b/lib/util.c	Tue Aug 02 13:24:13 2022 +0200
@@ -173,19 +173,6 @@
 	return ret;
 }
 
-const char *
-util_path(const char *filename)
-{
-	assert(filename);
-
-	/* Build path to the template file. */
-	static char path[PATH_MAX];
-
-	//snprintf(path, sizeof (path), "%s/%s", config.themedir, filename);
-
-	return path;
-}
-
 void
 util_die(const char *fmt, ...)
 {