File: libsettings.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 (22 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef LIBUSEFUL_SETTINGS
#define LIBUSEFUL_SETTINGS

#include "Vars.h"

/* These functions provide an interface for setting variables that */
/* are used by libUseful itself */

#ifdef __cplusplus
extern "C" {
#endif

ListNode *LibUsefulValuesGetHead();
void LibUsefulSetValue(char *Name, char *Value);
char *LibUsefulGetValue(char *Name);

#ifdef __cplusplus
};
#endif


#endif