#ifndef _LIBFRUP_H
#define _LIBFRUP_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdarg.h>
#include "libfru.h"
#include "../../libfruutils/fru_tag.h"
typedef uint64_t fru_seghdl_t;
typedef enum {FRU_ENCRYPT, FRU_DECRYPT} fru_encrypt_t;
typedef fru_errno_t
(*fru_encrypt_func_t)(fru_encrypt_t en_dec, unsigned char *buf, size_t buf_len);
typedef void (*end_node_fp_t)(fru_nodehdl_t node, const char *path,
const char *name, void *args);
extern fru_encrypt_func_t encrypt_func;
extern fru_errno_t fru_encryption_supported(void);
extern fru_errno_t fru_walk_tree(fru_nodehdl_t node, const char *prior_path,
fru_errno_t (*process_node)(fru_nodehdl_t node,
const char *path,
const char *name, void *args,
end_node_fp_t *end_node,
void **end_args),
void *args);
extern int fru_pathmatch(const char *path, const char *searchpath);
extern fru_errno_t fru_for_each_segment(fru_nodehdl_t node,
int (*function)(fru_seghdl_t segment,
void *args),
void *args);
extern fru_errno_t fru_get_segment_name(fru_seghdl_t segment, char **name);
extern fru_errno_t fru_for_each_packet(fru_seghdl_t segment,
int (*function)(fru_tag_t *tag,
uint8_t *payload,
size_t length, void *args),
void *args);
#ifdef __cplusplus
}
#endif
#endif