This repository has been archived by the owner on Dec 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vanti-public/master
Merge of Vanti additions
- Loading branch information
Showing
6 changed files
with
161 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
This project contains globally useful, portable includes for augmenting the base functionality of the proprietary AMX NetLinx language used for programming [AMX NetLinx integrated controllers](http://www.amx.com/products/categoryCentralControllers.asp). | ||
This project contains globally useful, portable includes for augmenting the base functionality of the proprietary AMX NetLinx language used for programming [AMX NetLinx integrated controllers](http://www.amx.com/products/categoryCentralControllers.asp). | ||
|
||
Currently the project provides a math library, string manipulation library, time and date library, array utils, a managed debug messaging library and an associated console output library. | ||
|
||
|
@@ -15,6 +15,8 @@ Currently the project provides a math library, string manipulation library, time | |
|
||
[Motaz Abuthiab](mailto:[email protected]) | ||
|
||
[Vanti](https://www.vanti.co.uk) | ||
|
||
# Contributing | ||
|
||
Want to help out? Awesome. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
program_name='ncl' | ||
|
||
include 'io' | ||
include 'debug' | ||
include 'array' | ||
include 'string' | ||
include 'math' | ||
include 'unixtime' | ||
include 'graph' | ||
program_name='netlinx-common-libraries' | ||
|
||
include 'io' | ||
include 'debug' | ||
include 'array' | ||
include 'string' | ||
include 'math' | ||
include 'unixtime' | ||
include 'graph' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters