ocf/tests/functional/pyocf/c/wrappers/ocf_volume_wrappers.c
Adam Rutkowski 978620f9e3 pyocf: move C wrappers to newly added "c" diretory
Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
2022-05-16 15:40:18 +02:00

13 lines
254 B
C

/*
* Copyright(c) 2012-2021 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "ocf/ocf_io.h"
#include "ocf/ocf_volume.h"
const char *ocf_uuid_to_str_wrapper(const struct ocf_volume_uuid *uuid) {
return ocf_uuid_to_str(uuid);
}