15 lines
141 B
C
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;
|
|
}
|