rsyncui/tools.h

15 lines
305 B
C
Raw Normal View History

2023-01-07 12:44:45 +01:00
#ifndef TOOLS_H
#define TOOLS_H
#include <string>
#include <vector>
#include "mainwindow.h"
using namespace std;
const vector<string> explode(const string& s, const char& c, int n = 0);
2023-01-12 09:23:45 +01:00
FILE * popen2(array<string, 7> argv, string type, int & pid);
2023-01-07 12:44:45 +01:00
int pclose2(FILE * fp, pid_t pid);
#endif // TOOLS_H