X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=dwmblocks.c;fp=dwmblocks.c;h=2f3b774664cfca6eac7e016b946b1eed3088f9cf;hb=030de220e4f53b8dbb45da41d2d51c8e26420b66;hp=88bdfb0b08f23616f70b6e2b08c643824eeea3a3;hpb=003a2238dcb871f2b0f68c1ecfc5268bba5dc92c;p=dwmblocks.git 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) {