File: include-exclude.h

package info (click to toggle)
hashrat 1.25%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,900 kB
  • sloc: ansic: 32,338; sh: 400; makefile: 337
file content (11 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11

#ifndef HASHRAT_INCLUDE_EXCLUDE_H
#define HASHRAT_INCLUDE_EXCLUDE_H

#include "common.h"

void IncludeExcludeAdd(HashratCtx *Ctx, int Type, const char *Item);
void IncludeExcludeLoadExcludesFromFile(const char *Path, HashratCtx *Ctx);
int IncludeExcludeCheck(HashratCtx *Ctx, const char *Path, struct stat *FStat);

#endif