C function seemingly not defined anywhere! - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:13:27Z http://stackoverflow.com/feeds/question/736408 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere 3 C function seemingly not defined anywhere! hasen j 2009-04-10T00:58:20Z 2009-04-10T01:36:56Z <p>I'm looking at the vim source code, specifically the file <a href="http://svn.jansson.be/limp/vim-ecl/7.2/src/normal.c" rel="nofollow">normal.c</a>, and I see this function <code>nv_operator</code> being used, but it's not defined anywhere (I grepped the entire src directory)</p> <p>It's only declared as:</p> <pre><code>static void nv_operator __ARGS((cmdarg_T *cap)); </code></pre> <p>I've looked up the definition of __ARGS but it's just ... nothing (pretty much)<br /> in <a href="http://svn.jansson.be/limp/vim-ecl/7.2/src/vim.h" rel="nofollow">vim.h</a>:</p> <pre><code>#define __ARGS(x) x </code></pre> <p>So what could be going on? Is this some kind of <code>C</code> technique to create a dummy function or something?</p> http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere/736424#736424 1 Answer by lothar for C function seemingly not defined anywhere! lothar 2009-04-10T01:09:05Z 2009-04-10T01:36:56Z <p>It's simply a <a href="http://en.wikipedia.org/wiki/Forward%5Fdeclaration" rel="nofollow">forward declaration</a>, so that the function is known to the C compiler (and can be used (called from other functions)) before it's actually defined (in line 8247). The actual formatting of the definition (which includes newlines) makes it hard to grep for it's existence.</p> <p>Don't get distracted by the __ARGS macro. It's only a compatibility macro for the different function declaration syntaxes of K&amp;R C vs. ANSI C.</p> <p>In <a href="http://en.wikipedia.org/wiki/ANSI%5FC" rel="nofollow">ANSI C</a> a function declaration must look like this:</p> <blockquote> <p>int getopt(int, char * const *, const char *);</p> </blockquote> <p>In the (older) Kernighan and Ritchie C <a href="http://en.wikipedia.org/wiki/C_(programming_language)#K.26R_C" rel="nofollow">http://en.wikipedia.org/wiki/C_(programming_language)#K.26R_C</a></p> <blockquote> <p>int getopt();</p> </blockquote> http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere/736426#736426 8 Answer by Johannes Schaub - litb for C function seemingly not defined anywhere! Johannes Schaub - litb 2009-04-10T01:09:28Z 2009-04-10T01:15:58Z <p>There is a definition present here:</p> <pre><code>/* * Handle an operator command. * The actual work is done by do_pending_operator(). */ static void nv_operator(cap) cmdarg_T *cap; .... </code></pre> <p>That style of definition is using an identifier list for its parameters. The style is deprecated (obsolescent) but can still be used in C. The identifiers are named in the parameter list, and their type are named in declarations that immediately follow the function declarator but precede the functions body. </p> <p>The <code>__ARGS</code> macro is there to handle compilers that don't know about prototypes for functions (the other form to declare parameters - with type <em>and</em> name combined directly in the function parameter list). It would then just emit no parameters at all in declarations, i think. </p> <p>Update: See this code in <code>vim.h</code>:</p> <pre><code>#if defined(MACOS) &amp;&amp; (defined(__MRC__) || defined(__SC__)) /* Apple's Compilers support prototypes */ # define __ARGS(x) x #endif #ifndef __ARGS # if defined(__STDC__) || defined(__GNUC__) || defined(WIN3264) # define __ARGS(x) x # else # define __ARGS(x) () # endif #endif </code></pre> http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere/736429#736429 1 Answer by ojblass for C function seemingly not defined anywhere! ojblass 2009-04-10T01:11:24Z 2009-04-10T01:11:24Z <p>Its hard to find because of how it is defined:</p> <p>nv_operator(cap)</p> <p>appears on a line by itself.</p> http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere/736430#736430 1 Answer by Tom for C function seemingly not defined anywhere! Tom 2009-04-10T01:12:08Z 2009-04-10T01:12:08Z <p>I am not too sure what is going on, but here are some hints to help you in your search:</p> <p>First of all, the __ARGS macro seems to be there because there may be versions of C where you shouldn't include the args in the declaration of the functions (Notice that the macro is defined differently depending on other preprocessor symbols... the comments say it).</p> <p>Secondly, searching for the function nv_operator may not be good enough. The function might be generated by macros and such, so you can't search for an explicit definition.... for example, maybe the "nv" prefix is added by the preprocessor.</p> <p>Hope this helps.</p>