mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 23:10:00 +00:00
3daf0af480
Added docs/team.txt
20 lines
302 B
C
20 lines
302 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _FILEHANDLING_H
|
|
#define _FILEHANDLING_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
uint count_lines (FILE *fd);
|
|
|
|
int fgetl (FILE *fp, char *line_buf);
|
|
|
|
int in_superchop (char *buf);
|
|
|
|
#endif // _FILEHANDLING_H
|