9 lines
115 B
C
9 lines
115 B
C
#include "lib.h"
|
|
|
|
int _asc(String* str)
|
|
{
|
|
if (str == 0 || str->strval == 0)
|
|
error(3);
|
|
return (*str->strval);
|
|
}
|