This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/dataset.c
|
||||
* @DESCRIPTION Hash maps and dataset storages for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
PH7_PRIVATE sxi32 SySetInit(SySet *pSet, SyMemBackend *pAllocator, sxu32 ElemSize) {
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/date.c
|
||||
* @DESCRIPTION Date manipulation support for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
static const char *zEngDay[] = {
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/hash.c
|
||||
* @DESCRIPTION Hashing algorithms for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
sxu32 SyBinHash(const void *pSrc, sxu32 nLen) {
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/libfmt.c
|
||||
* @DESCRIPTION Modern formatting library for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
#define SXFMT_BUFSIZ 1024 /* Conversion buffer size */
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/libzip.c
|
||||
* @DESCRIPTION ZIP archive file manipulation support for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
sxu32 SyBinHash(const void *pSrc, sxu32 nLen);
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/memory.c
|
||||
* @DESCRIPTION PH7 Engine memory allocation subsystem
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#if defined(__WINNT__)
|
||||
#include <Windows.h>
|
||||
#else
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/mutex.c
|
||||
* @DESCRIPTION Thread safe MUTEX implementation for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
#if defined(__WINNT__)
|
||||
#include <Windows.h>
|
||||
|
@@ -1,14 +1,13 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/random.c
|
||||
* @DESCRIPTION Psuedo Random Number Generator (PRNG) for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
/*
|
||||
* Psuedo Random Number Generator (PRNG)
|
||||
* @authors: SQLite authors <http://www.sqlite.org/>
|
||||
* @status: Public Domain
|
||||
* NOTE:
|
||||
* Nothing in this file or anywhere else in the library does any kind of
|
||||
* encryption.The RC4 algorithm is being used as a PRNG (pseudo-random
|
||||
* number generator) not as an encryption device.
|
||||
*/
|
||||
#define SXPRNG_MAGIC 0x13C4
|
||||
#ifdef __UNIXES__
|
||||
#include <sys/types.h>
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/string.c
|
||||
* @DESCRIPTION String manipulation support for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
PH7_PRIVATE sxu32 SyStrlen(const char *zSrc) {
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/tokenizer.c
|
||||
* @DESCRIPTION PH7 Engine tokenizer
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
#define INVALID_LEXER(LEX) ( LEX == 0 || LEX->xTokenizer == 0 )
|
||||
|
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/utils.c
|
||||
* @DESCRIPTION PH7 Engine utility functions
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
PH7_PRIVATE sxi32 SyStrIsNumeric(const char *zSrc, sxu32 nLen, sxu8 *pReal, const char **pzTail) {
|
||||
|
Reference in New Issue
Block a user