libfunctions.h 248 B

123456789101112
  1. #ifndef __LIBFUNCTIONS_H__
  2. #define __LIBFUNCTIONS_H__
  3. int get_id_from_pid(pid_t spid);
  4. char * itoa(int value);
  5. char * get_pipe_name(int node_id);
  6. void create_named_pipe(int node_id);
  7. FILE * create_log_file(int node_id, char scen_num[4]);
  8. #endif