Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / util.h @ master

History | View | Annotate | Download (210 Bytes)

1
#ifndef UTIL_H
2
#define UTIL_H
3

    
4
#include <unistd.h>
5

    
6
#define PIDFILE "/var/run/tooltron.pid"
7

    
8
char *read_file(const char *filename);
9
int create_pid_file();
10
pid_t read_pid_file();
11
void remove_pid_file();
12

    
13
#endif