#ifndef NIX_API_STORE_TEXT_H
#define NIX_API_STORE_TEXT_H
#include <stddef.h>
#include <nix_api_store.h>
#include <nix_api_util.h>
#ifdef __cplusplus
extern "C" {
#endif
nix_err nix_store_add_bytes_to_store(nix_c_context *context, Store *store,
const char *name,
const unsigned char *data, size_t data_len,
StorePath **out_path);
nix_err nix_store_path_to_string(nix_c_context *context, Store *store,
const StorePath *path,
nix_get_string_callback callback,
void *user_data);
#ifdef __cplusplus
}
#endif
#endif