view libc/config/public_api.td @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
line wrap: on
line source

include "spec/spec.td"

class MacroDef<string name> {
  string Name = name;
  string Defn = "";
}

class SimpleMacroDef<string name, string value> : MacroDef<name> {
  let Defn = !strconcat("#define ", name, " ", value);
}

class MacroDefineIfNot<string name, string value> : MacroDef<name> {
  let Defn = !strconcat("#ifndef ", name, "\n",
                        "#define " , name, " ", value, "\n",
                        "#endif // ", name);
}

class PublicAPI<string name> {
  string HeaderName = name;
  list<MacroDef> Macros = [];
  list<string> Types = [];
  list<string> Enumerations = [];
  list<string> Structs = [];
  list<string> Functions = [];
  list<string> Objects = [];
}