Branch: Tag:

2010-05-11

2010-05-11 16:10:52 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed Autodoc markup.

Rev: src/modules/Parser/c.c:1.11
Rev: src/modules/Parser/parser.c:1.21
Rev: src/modules/Parser/pike.c:1.11
Rev: src/modules/Parser/rcs.c:1.5

24:      #include "parser.h"    + /*! @module Parser +  */ +  + /*! @module _parser +  */ +  + /*! @module _Pike +  *! +  *! Low-level helpers for @[Parser.Pike]. +  *! +  *! @note +  *! You probably want to use @[Parser.Pike] instead of this module. +  *! +  *! @seealso +  *! @[Parser.Pike], @[_C]. +  */ +    INLINE static int m_isidchar( unsigned int x )   {    if( (x >= 'a' && x <= 'z') || (x>='A' && x<='Z') || x>128 || x == '_')
69:    free_array( *x );   }    - /* @decl array(array(string)|string) tokenize(string code) -  * -  * Tokenize a string of Pike tokens. -  * -  * @returns -  * Returns an array with Pike-level tokens and the remainder (a -  * partial token), if any. + /*! @decl array(array(string)|string) tokenize(string code) +  *! +  *! Tokenize a string of Pike tokens. +  *! +  *! @returns +  *! Returns an array with Pike-level tokens and the remainder (a +  *! partial token), if any.    */   static void f_tokenize( INT32 args )   {
131:    f_aggregate( 2 );   }    + /*! @endmodule +  */    -  + /*! @endmodule +  */ +  + /*! @endmodule +  */ +    void init_parser_pike()   {    ADD_FUNCTION2("tokenize", f_tokenize,