Archive for February 4th, 2017

Test Post

Saturday, February 4th, 2017

I’m doing some maintenance on the HurricaneScreamer blog. Please ignore this post.

// Return the argument type from a locator structure
char l_ptype(Locator *loc, long *apistatus)
{
Value val;
*apistatus = _Load(loc, &val);
return (*apistatus != 0 ? ‘E’ : p_ptype(&val));
}