post rebranding

This commit is contained in:
Antranig Vartanian 2024-05-11 19:17:23 +04:00
parent 4169aecd5b
commit 95b512baf4
No known key found for this signature in database
GPG key ID: DE3998662D59F21C
66 changed files with 716 additions and 15 deletions

44
build/obe.c Normal file
View file

@ -0,0 +1,44 @@
/* voc 2.1.0 [2022/05/16] for clang LP64 on darwin xtpam */
#define SHORTINT INT8
#define INTEGER INT16
#define LONGINT INT32
#define SET UINT32
#include "SYSTEM.h"
#include "Files.h"
#include "Out.h"
#include "Platform.h"
static void obe_CheckDirectories (void);
static void obe_GenIndex (void);
static void obe_CheckDirectories (void)
{
Files_File fd = NIL;
fd = Files_New((CHAR*)"public", 7);
}
static void obe_GenIndex (void)
{
Files_File outputfd = NIL, templfd = NIL, examplesfd = NIL;
Files_Rider outputrd, templrd, examplesrd;
}
export int main(int argc, char **argv)
{
__INIT(argc, argv);
__MODULE_IMPORT(Files);
__MODULE_IMPORT(Out);
__MODULE_IMPORT(Platform);
__REGMAIN("obe", 0);
/* BEGIN */
obe_CheckDirectories();
obe_GenIndex();
__FINI;
}