Setup C and Header Files for User Space Logger Detection.

This commit is contained in:
Sebastian Lenzlinger 2023-05-14 15:21:52 +02:00
parent f4c9478743
commit 41aa7fc63b
7 changed files with 14 additions and 0 deletions

View File

14
src/find_logger_proc.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h> // for printf()
#include <stdlib.h> // for exit()
#include <string.h> // for strcmp()
#include <dirent.h> // for opendir(), readdir(), closedir()
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h> // for readlink(), chdir(), getcwd()
#include <errno.h> // for errno
#include "find_logger.h"