#----------------------------------------------------------------------------
# /var/install/include/eislib - library for eisfair scripts
#
# Creation   :  2004-10-10 max
# Last Update:  $Id$
#
# Copyright (c) 2001-2007 the eisfair team, team(at)eisfair(dot)org
#
# 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
# eistime: date and time in ISO 8601 notation

#============================================================================
# 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/mecho
    . /var/install/include/techo
    . /var/install/include/eistime
fi

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