2018-06-23 22:35:51 +00:00
|
|
|
#include "lib.h"
|
1984-11-29 14:22:02 +00:00
|
|
|
|
2016-12-12 20:15:25 +00:00
|
|
|
int _asc(String* str)
|
1984-11-29 14:22:02 +00:00
|
|
|
{
|
2016-12-12 20:16:32 +00:00
|
|
|
if (str == 0 || str->strval == 0)
|
1984-11-29 14:22:02 +00:00
|
|
|
error(3);
|
2016-12-12 20:16:32 +00:00
|
|
|
return (*str->strval);
|
1984-11-29 14:22:02 +00:00
|
|
|
}
|