mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
|
|
@ -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
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue