mirror of
https://github.com/ovh/ovh-ttyrec.git
synced 2023-04-10 17:58:23 +03:00
14 lines
156 B
C
14 lines
156 B
C
#ifndef __TTYREC_H__
|
|
#define __TTYREC_H__
|
|
|
|
#include <sys/time.h>
|
|
|
|
typedef struct header
|
|
{
|
|
struct timeval tv;
|
|
int len;
|
|
} Header;
|
|
|
|
|
|
#endif
|