# This include file contains prototypes and definitions
# for accessing functions and subroutines in
# EXAMPLE.DLL.
# Search a string for upper case characters
function HasUpper(string:MixedCaseString)
returns boolean
library "example"
# Search a string for lower case characters
function HasLower(string:MixedCaseString)
returns boolean
library "example"
# Change a string to be upper case only
subroutine MakeUpper(string:MixedCaseString)
library "example"
# Change a string to be lower case only
function MakeLower(string reference:MixedCaseString)
returns integer
library "example"
# Change a string to be reverse order
subroutine MakeBackwards(string:MixedCaseString)
library "example"
# CONSTANT DEFINITIONS
integer constant ERROR_FREE is 0
integer constant ERROR_OUT_OF_MEM is 1