see changelog

This commit is contained in:
Eddie Runia
1999-07-06 15:45:05 +00:00
parent 65b9ab45ff
commit 145b795bb5
10 changed files with 77 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
19990706-16:30 Eddie Runia
* source/rtl/asort.prg; source/rtl/objfunc.prg; source/runner/runner.c;
source/tools/debug.c; source/tools/stringp.prg; source/rtl/transfrm.c
Copyright assertions made.
* source/rtl/strcmp.c; source/rtl/classes.c
Partial copyright assertion made
19990706-20:15 Bruno Cantero <bruno@issnet.net>
CVSed by Andi Jahja <andij@aonlippo.co.id>

View File

@@ -2,6 +2,12 @@
* $Id$
*/
/*
* ASORT - Sort an array
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
//
// <aSorted> aSort( <aUnsorted>, [nStart], [nCount], [bBlock] )
//

View File

@@ -2,6 +2,24 @@
* $Id$
*/
/*
* Classes.C contains the base-routines for OOPS system
*
* Partial Copyright (C) 1999 Eddie Runia ( eddie@runia.com )
* partial copyright regarding the following functions :
* CLASSDEL
* CLASSMOD
* :CLASSSEL()
* ISMESSAGE
* OCLONE
* OSEND
* SELECTSUPER
* __INSTSUPER
* __WDATAS
* __WDATADEC
* __WDATAINC
*/
#include <extend.h>
#include <errorapi.h>
#include <itemapi.h>

View File

@@ -2,6 +2,14 @@
* $Id$
*/
/*
* OBJFUNC
*
* Contains additional object oriented functions
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#define MET_METHOD 0
#define MET_DATA 1
#define MET_CLASSDATA 2

View File

@@ -2,6 +2,13 @@
* $Id$
*/
/*
* StrCmp. String comparision functions
*
* stricmp : Copyright (C) 1999 David Holm (...)
* hb_itemStrCmp : Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#include <hbsetup.h>
#include <ctype.h>
#include <extend.h>

View File

@@ -2,6 +2,12 @@
* $Id$
*/
/*
* TransForm. Clipper transformation function
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#include <extend.h>
#include <init.h>
#include <errorapi.h>

View File

@@ -1,3 +1,9 @@
/*
* Runner - Dynamic Library load routine
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#define FILE _FILE
#include <stdio.h>

View File

@@ -2,6 +2,12 @@
* $Id$
*/
/*
* Debug - Contains debugging functions
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
/* $Doc$
* $Description$ Debug functions.
* $Requirement$ source\rtl\itemapi.c (1999/05/04)

View File

@@ -2,6 +2,12 @@
* $Id$
*/
/*
* STRINGP - Misc. string functions
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#define DATA_SYMBOL 1
#define DATA_VAL 2

View File

@@ -1,3 +1,10 @@
/*
* Runner - Dynamic object load routine
*
* Copyright (C) 1999 Eddie Runia (eddie@runia.com)
*/
#include <errorapi.h>
#include <stdio.h>