/** * \file atoi.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Lars Gullik Bjønnes * \author Jean-Marc Lasgouttes * * Full author contact details are available in file CREDITS. */ #include #include #include "lyxlib.h" #ifndef CXX_GLOBAL_CSTD using std::atoi; #endif int lyx::support::atoi(string const & nstr) { return ::atoi(nstr.c_str()); }