summaryrefslogtreecommitdiff
path: root/include/background.h
blob: 8a430b3195b589bbbcfd379030223b2f358cb7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef BACKGROUND_H
#define BACKGROUND_H

typedef int (*bg_func)(int);

int bg_register(bg_func f, int initval);
int bg_setstat(int handle, int val);
int bg_getstat(int handle);
void bg_shed(void);

#endif /* BACKGROUND_H */