File: libUseful.h

package info (click to toggle)
hashrat 1.8.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,700 kB
  • ctags: 1,677
  • sloc: ansic: 17,713; sh: 323; makefile: 157
file content (56 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef LIB_USEFUL_H
#define LIB_USEFUL_H

#ifndef FALSE
#define FALSE 0
#endif

#ifndef TRUE
#define TRUE 1
#endif

#define __LIBUSEFUL_VERSION__ "2.0"
#define __LIBUSEFUL_BUILD_DATE__ __DATE__ 
#define __LIBUSEFUL_BUILD_TIME__ __TIME__ 

//__TIME__

#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <stdio.h>
#include "memory.h"
#include "socket.h"
#include "unix_socket.h"
#include "string.h"
#include "expect.h"
#include "list.h"
#include "file.h"
#include "base64.h"
#include "Tokenizer.h"
#include "FileSystem.h"
#include "GeneralFunctions.h"
#include "DataProcessing.h"
#include "EncryptedFiles.h"
#include "ConnectManager.h"
#include "Hash.h"
#include "Compression.h"
#include "Time.h"
#include "Vars.h"
#include "Markup.h"
#include "MathExpr.h"
#include "PatternMatch.h"
#include "SpawnPrograms.h"
#include "MessageBus.h"
#include "ParseURL.h"
#include "sound.h"
#include "pty.h"
#include "Log.h"
#include "http.h"
#include "oauth.h"
#include "tar.h"
#include "ansi.h"
#include "proctitle.h"
#include "securemem.h"

#endif