You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/filehandling.h

20 lines
301 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _FILEHANDLING_H
#define _FILEHANDLING_H
#include <stdio.h>
#include <string.h>
#include <errno.h>
u64 count_lines (FILE *fd);
int fgetl (FILE *fp, char *line_buf);
int in_superchop (char *buf);
#endif // _FILEHANDLING_H