00001
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #pragma once
00034 #ifndef OVAL_SEXP_H
00035 #define OVAL_SEXP_H
00036
00037 #include <seap.h>
00038 #include <config.h>
00039 #include "../common/util.h"
00040 #include "oval_definitions_impl.h"
00041
00042 OSCAP_HIDDEN_START;
00043
00044
00045
00046
00047 SEXP_t *oval_value_to_sexp(struct oval_value *val, oval_datatype_t dtype);
00048
00049 SEXP_t *oval_object2sexp(const char *typestr, struct oval_object *object, struct oval_syschar_model *syschar_mode, void *);
00050 SEXP_t *oval_state2sexp(struct oval_state *state, void *sess);
00051
00052
00053
00054
00055 struct oval_syschar *oval_sexp2sysch(const SEXP_t * s_exp, struct oval_syschar_model *model,
00056 struct oval_object *object);
00057 int oval_sysch_apply_sexp(struct oval_syschar *sysch, const SEXP_t * s_list, struct oval_object *object);
00058
00059 OSCAP_HIDDEN_END;
00060
00061 #endif