You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef SCANNER_H
|
|
#define SCANNER_H
|
|
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/uio.h>
|
|
|
|
int watch_memory(void *addr, int desired);
|
|
void set_control_func(void (*c)(void));
|
|
void set_pid(pid_t p);
|
|
#endif
|