15 lines
129 B
C
15 lines
129 B
C
#include <io.h>
|
|
|
|
int
|
|
portable_mode ()
|
|
{
|
|
if ((_access( "portable-mode", 0 )) != -1)
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|