cujson-sys 0.1.0

Raw FFI bindings to cuJSON, compiled with nvcc when the `cuda` feature is on
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STANDARD_PARSE_H
#define STANDARD_PARSE_H

#include <string>
#include "cujson_types.h"

// Function prototype for standard_parse
// cuJSONResult standard_json_parse(uint8_t* h_jsonContent);
namespace cujson_std {
cuJSONResult parse_standard_json(cuJSONInput input);
} // namespace cujson_std

#endif // STANDARD_PARSE_H