Shorthand是一个强大的脚本语言

源代码在线查看: function.cpp

软件大小: 482 K
上传用户: jiangleip531
关键词: Shorthand 脚本 语言
下载地址: 免注册下载 普通下载 VIP

相关代码

				///////////////////////////////////////////////////////////////////////////////
				// $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;
				}
				
							

相关资源