Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dlight/dlhist-read.c
2013-10-17 20:51:22 +02:00

15 lines
141 B
C

#include <stdio.h>
#include "dlhist.h"
int main() {
if (dlhist_open() < 0)
return 1;
dlhist_print();
dlhist_close();
return 0;
}