mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-17 19:21:11 +00:00
17 lines
294 B
C
17 lines
294 B
C
|
/**
|
||
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
char *logfile_generate_topid (void);
|
||
|
char *logfile_generate_subid (void);
|
||
|
|
||
|
void logfile_append (const char *fmt, ...);
|