mirror of
https://github.com/diamante0018/MonitorRam.git
synced 2025-05-09 22:14:54 +00:00
17 lines
254 B
C
17 lines
254 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
void printTimeStamp(FILE *fp);
|
|
|
|
#define BUFFER_SIZE 4096
|
|
|
|
#endif /* COMMON_H */
|