reactor-c
C Runtime for Lingua Franca
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "trace.h"
#include "trace_types.h"
Typedefs | |
typedef void(* | string_consumer_t) (int, const char *, const char *) |
Functions | |
int | is_alphanumeric (char c) |
void | to_camel_case (char *s) |
void | print_enum_variant (int idx, const char *camel_case, const char *description) |
void | print_match_case (int idx, const char *camel_case, const char *description) |
void | print_from_int (int idx, const char *camel_case, const char *description) |
void | do_for_each_camelcase (string_consumer_t sc) |
void | print_display_impl () |
void | print_rs_enum () |
void | print_warning () |
void | print_rs_from_int () |
int | main () |
typedef void(* string_consumer_t) (int, const char *, const char *) |
void do_for_each_camelcase | ( | string_consumer_t | sc | ) |
int is_alphanumeric | ( | char | c | ) |
int main | ( | ) |
void print_display_impl | ( | ) |
void print_enum_variant | ( | int | idx, |
const char * | camel_case, | ||
const char * | description ) |
void print_from_int | ( | int | idx, |
const char * | camel_case, | ||
const char * | description ) |
void print_match_case | ( | int | idx, |
const char * | camel_case, | ||
const char * | description ) |
void print_rs_enum | ( | ) |
void print_rs_from_int | ( | ) |
void print_warning | ( | ) |
void to_camel_case | ( | char * | s | ) |