The example shows how to create and inspect symbols.
The example shows how to create and inspect symbols.
#define __STDC_FORMAT_MACROS
#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
typedef struct {
char *string;
size_t string_n;
} string_buffer_t;
void free_string_buffer(string_buffer_t *buf) {
if (buf->string) {
free(buf->string);
buf->string = NULL;
buf->string_n = 0;
}
}
bool ret = true;
char *string;
size_t n;
goto error;
}
if (buf->string_n < n) {
if (!(string = (char *)realloc(buf->string, sizeof(*buf->string) * n))) {
goto error;
}
buf->string = string;
buf->string_n = n;
}
goto error;
}
printf("%s", buf->string);
goto out;
error:
ret = false;
out:
return ret;
}
int main() {
char const *error_message;
int ret = 0;
string_buffer_t buf = {NULL, 0};
size_t size;
goto error;
}
goto error;
}
for (size_t i = 0; i < sizeof(symbols) / sizeof(*symbols); ++i) {
printf("the hash of ");
if (!print_symbol(symbols[i], &buf)) {
goto error;
}
}
goto error;
}
assert(size == 2);
for (size_t i = 0; i < size; ++i) {
if (!print_symbol(symbols[0], &buf)) {
goto error;
}
if (!print_symbol(args[i], &buf)) {
goto error;
}
printf("\n");
}
if (!print_symbol(symbols[0], &buf)) {
goto error;
}
if (!print_symbol(symbols[1], &buf)) {
goto error;
}
printf("\n");
goto out;
error:
error_message = "error";
}
printf("%s\n", error_message);
out:
free_string_buffer(&buf);
return ret;
}
Single header containing the whole clingo API.
CLINGO_VISIBILITY_DEFAULT char const * clingo_error_message()
Get the last error message set if an API call fails.
CLINGO_VISIBILITY_DEFAULT void clingo_set_error(clingo_error_t code, char const *message)
Set a custom error code and message in the active thread.
CLINGO_VISIBILITY_DEFAULT clingo_error_t clingo_error_code()
Get the last error code set by a clingo API call.
@ clingo_error_bad_alloc
memory could not be allocated
Definition clingo.h:144
CLINGO_VISIBILITY_DEFAULT size_t clingo_symbol_hash(clingo_symbol_t symbol)
Calculate a hash code of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_equal_to(clingo_symbol_t a, clingo_symbol_t b)
Check if two symbols are equal.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_id(char const *name, bool positive, clingo_symbol_t *symbol)
Construct a symbol representing an id.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string_size(clingo_symbol_t symbol, size_t *size)
Get the size of the string representation of a symbol (including the terminating 0).
uint64_t clingo_symbol_t
Represents a symbol.
Definition clingo.h:330
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_arguments(clingo_symbol_t symbol, clingo_symbol_t const **arguments, size_t *arguments_size)
Get the arguments of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_function(char const *name, clingo_symbol_t const *arguments, size_t arguments_size, bool positive, clingo_symbol_t *symbol)
Construct a symbol representing a function or tuple.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string(clingo_symbol_t symbol, char *string, size_t size)
Get the string representation of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_less_than(clingo_symbol_t a, clingo_symbol_t b)
Check if a symbol is less than another symbol.
CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_number(int number, clingo_symbol_t *symbol)
Construct a symbol representing a number.