Browse Source

removed unused replace function

master
aidan 5 years ago
parent
commit
030de220e4
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      dwmblocks.c

+ 0
- 9
dwmblocks.c View File

@ -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)
{


Loading…
Cancel
Save