[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* atom.h
*
*
* contains a search parameter and its positive or negative content.
*/
#ifndef _OpenAPI_atom_H_
@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "any_type.h"
#ifdef __cplusplus
extern "C" {
@ -20,14 +21,14 @@ extern "C" {
typedef struct OpenAPI_atom_s OpenAPI_atom_t;
typedef struct OpenAPI_atom_s {
char *attr;
char *value;
OpenAPI_any_type_t *value;
bool is_negative;
int negative;
} OpenAPI_atom_t;
OpenAPI_atom_t *OpenAPI_atom_create(
char *attr,
char *value,
OpenAPI_any_type_t *value,
bool is_negative,
int negative
);