Shorthand是一个强大的脚本语言
源代码在线查看: function.cpp
///////////////////////////////////////////////////////////////////////////////
// $Header: /shorthand/src/function.cpp 3 8/28/02 6:27a Arm $
//-----------------------------------------------------------------------------
// Project: ShortHand interpreter
// Author: Andrei Remenchuk
//-----------------------------------------------------------------------------
// function.cpp: generic ShortHand function
///////////////////////////////////////////////////////////////////////////////
#include "function.h"
#include "except.h"
ShhFunction* ShhFunctionList::find(const char* name)
{
for(int i=0,n=m_size; i {
ShhFunction* f = get(i);
if (stricmp(f->m_name, name) == 0) return f;
}
return NULL;
}