1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 18:08:56 +00:00
hashcat/include/filehandling.h
jsteube 3daf0af480 Added docs/credits.txt
Added docs/team.txt
2016-09-11 22:20:15 +02:00

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