hsmet  1.0.0
he-read.h
gehe zur Dokumentation dieser Datei
1 
5 /* Copyright (C) 2014 - HS Schmalkalden. All rights reserved. */
6 
7 #ifndef HE_READ_H_INCLUDED
8 #define HE_READ_H_INCLUDED 1
9 
10 #ifndef HE_CONF_H_INCLUDED
11 #include "he-conf.h"
12 #endif
13 
14 #if HAVE_STDLIB_H
15 #ifndef STDLIB_H_INCLUDED
16 #include <stdlib.h>
17 #define STDLIB_H_INCLUDED 1
18 #endif
19 #endif
20 
21 #if HAVE_STDINT_H
22 #ifndef STDINT_H_INCLUDED
23 #include <stdint.h>
24 #define STDINT_H_INCLUDED 1
25 #endif
26 #endif
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
38 int
39 hsm_et_read_double(char const *msg, double *dptr);
40 
47 int
48 hsm_et_read_int(char const *msg, int *dptr);
49 
58 int
59 hsm_et_read_string(char const *msg, char *dptr, char *buffer, size_t sz);
60 
61 #ifdef __cplusplus
62 }
63 #endif
64 
65 #endif
66 
67 /* vim: set ai sw=4 ts=4 expandtab : */
68 
int hsm_et_read_int(char const *msg, int *dptr)
Integer-Wert einlesen.
int hsm_et_read_double(char const *msg, double *dptr)
Double-Wert einlesen.
Konfigurationseinstellungen.
int hsm_et_read_string(char const *msg, char *dptr, char *buffer, size_t sz)
String einlesen.