1 /*
2     find_opcode.h:
3 
4     Copyright (C) 2016 by John ffitc
5 
6     This file is part of Csound.
7 
8     The Csound Library is free software; you can redistribute it
9     and/or modify it under the terms of the GNU Lesser General Public
10     License as published by the Free Software Foundation; either
11     version 2.1 of the License, or (at your option) any later version.
12 
13     Csound is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU Lesser General Public License for more details.
17 
18     You should have received a copy of the GNU Lesser General Public
19     License along with Csound; if not, write to the Free Software
20     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21     02110-1301 USA
22 */
23 #ifndef _FIND_OPCODE_H_
24 #define _FIND_OPCODE_H_
25 
26 char* get_opcode_short_name(CSOUND* csound, char* opname);
27 
28 PUBLIC OENTRY* find_opcode_new(CSOUND* csound, char* opname,
29                                char* outArgsFound, char* inArgsFound);
30 PUBLIC OENTRY* find_opcode_exact(CSOUND* csound, char* opname,
31                                char* outArgsFound, char* inArgsFound);
32 /* find OENTRY with the specified name in opcode list */
33 
34 OENTRY* find_opcode(CSOUND *, char *);
35 #endif
36