mirror of
https://github.com/hashcat/hashcat
synced 2024-11-13 17:28:58 +01: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, ...);
|