]> git.lyx.org Git - lyx.git/blob - src/support/atoi.C
small cleanup, doxygen, formatting changes
[lyx.git] / src / support / atoi.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #include "lyxlib.h"
6
7
8 int lyx::atoi(string const & nstr)
9 {
10         return ::atoi(nstr.c_str());
11 }