/*
 * Find length of string on the HP48 data stack.
 * Copyright (C) 1994 Alex T Ramos. All rights reserved. No warranty.
 * 
 */

#include <hp48/main.h>

int main(int argc, char *argv[])
{
    hp_object *top = _STACK(0);    
    return OBJ_LENGTH(top);
}



syntax highlighted by Code2HTML, v. 0.9.1