mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-02-01 19:53:09 +01:00
- remove unused variables - fix coding style of most function (Indentation, Tabulation, ..) - check the source code using cppcheck tool - change sprintf by snprintf
18 lines
530 B
C
18 lines
530 B
C
/*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author: Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*/
|
|
|
|
#ifndef __DATAMODELVERSION_H
|
|
#define __DATAMODELVERSION_H
|
|
|
|
#include <libbbf_api/dmcommon.h>
|
|
|
|
int get_Device_RootDataModelVersion(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value);
|
|
|
|
#endif
|