#----------------------------------------------------------------------------
# /var/install/include/eislib - library for eisfair scripts
#
# Copyright (c) 2004 Frank Meyer <frank@eisfair(dot)org>
#
# Creation:     10.10.20004 max
# Last Update:  $Id$
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#----------------------------------------------------------------------------

#============================================================================
# interface description
#============================================================================
# 
# anykey                wait for user pressing any key
#
# clrhome               clears screen (on tty) / draws a line (html-browser)
#
# mecho                 multi echo - read documentation for details
#
# techo                 table echo - read documentation for details
#


#============================================================================
# only include this file once
#============================================================================

if [ "$_EISLIB" != "true" ]
then
    _EISLIB='true'

    . /var/install/include/baselib
    . /var/install/include/anykey
    . /var/install/include/clrhome
    . /var/install/include/colecho_tty
    . /var/install/include/colecho_html
    . /var/install/include/mecho
    . /var/install/include/techo
fi

#============================================================================
# end
#============================================================================