1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 18:08:56 +00:00
hashcat/include/filehandling.h

20 lines
302 B
C
Raw Normal View History

/**
* 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