00001 /*************************************************************************** 00002 * alphautils.hpp 00003 * 00004 * $Id: alphautils.hpp,v 1.1 2008/02/26 22:26:55 plankowner Exp $ 00005 * 00006 * $Log: alphautils.hpp,v $ 00007 * Revision 1.1 2008/02/26 22:26:55 plankowner 00008 * added alphautils module 00009 * 00010 * 00011 * Tue Feb 26 17:06:24 2008 00012 * Copyright 2008 Peter L. Berghold 00013 * <peter@berghold.net> 00014 ****************************************************************************/ 00015 00016 /* 00017 * This program is free software; you can redistribute it and/or modify 00018 * it under the terms of the GNU General Public License as published by 00019 * the Free Software Foundation; either version 2 of the License, or 00020 * (at your option) any later version. 00021 * 00022 * This program is distributed in the hope that it will be useful, 00023 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 * GNU Library General Public License for more details. 00026 * 00027 * You should have received a copy of the GNU General Public License 00028 * along with this program; if not, write to the Free Software 00029 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA 00030 */ 00031 00032 #ifndef ALPHAUTILS_HPP_INCLUDED 00033 #define ALPHAUTILS_HPP_INCLUDED 00034 00035 char* itoan(int ix); 00036 int antoi(char* s); 00037 00038 #endif 00039 00040 00041