File: utils.h

package info (click to toggle)
python-sysv-ipc 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: ansic: 3,140; python: 1,960; makefile: 8; sh: 4
file content (17 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct param_struct {
    int iterations;
    int live_dangerously;
    int key;
    int permissions;
    int size;
};


void md5ify(char *, char *);
void say(const char *, char *);
int acquire_semaphore(const char *, int, int);
int release_semaphore(const char *, int, int);
void read_params(struct param_struct *);