From 030de220e4f53b8dbb45da41d2d51c8e26420b66 Mon Sep 17 00:00:00 2001 From: aidan Date: Thu, 16 Apr 2020 01:03:30 -0600 Subject: [PATCH] removed unused replace function --- dwmblocks.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dwmblocks.c b/dwmblocks.c index 88bdfb0..2f3b774 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -14,7 +14,6 @@ typedef struct { unsigned int signal; } Block; void sighandler(int num); -void replace(char *str, char old, char new); void getcmds(int time); #ifndef __OpenBSD__ void getsigcmds(int signal); @@ -37,14 +36,6 @@ static char statusstr[2][256]; static int statusContinue = 1; static void (*writestatus) () = setroot; -void replace(char *str, char old, char new) -{ - int N = strlen(str); - for(int i = 0; i < N; i++) - if(str[i] == old) - str[i] = new; -} - //opens process *cmd and stores output in *output void getcmd(const Block *block, char *output) { -- 2.39.2