mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
11 lines
131 B
C++
11 lines
131 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include <cstdlib>
|
||
|
|
||
|
#include "lyxlib.h"
|
||
|
|
||
|
int lyx::atoi(string const & nstr)
|
||
|
{
|
||
|
return ::atoi(nstr.c_str());
|
||
|
}
|