Files
ovh-ttyrec-bash-recorder/ttyrec.h
Stéphane Lesimple 7ac1b27cd0 First public release of ovh-ttyrec (v1.1.5.0)
Signed-off-by: Stéphane Lesimple <stephane.lesimple@corp.ovh.com>
2019-05-13 09:57:10 +02:00

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