Changeset 0784869 in mainline for uspace/lib/bithenge/script.c


Ignore:
Timestamp:
2012-08-20T17:32:00Z (13 years ago)
Author:
Sean Bartell <wingedtachikoma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1f136a27
Parents:
1a3b953
Message:

Bithenge: improve Doxygen documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/bithenge/script.c

    r1a3b953 r0784869  
    4646#include "tree.h"
    4747
     48/** @cond internal */
     49#define BUFFER_SIZE 4096
     50/** @endcond */
     51
    4852/** Tokens with more characters than this may be read incorrectly. */
    49 #define MAX_TOKEN_SIZE 256
    50 #define BUFFER_SIZE 4096
    51 
    52 /** Single-character symbols are represented by the character itself. Every
     53static const int MAX_TOKEN_SIZE = 256;
     54
     55/** @cond internal
     56 * Single-character symbols are represented by the character itself. Every
    5357 * other token uses one of these values: */
    5458typedef enum {
     
    8286        TOKEN_WHILE,
    8387} token_type_t;
     88/** @endcond */
    8489
    8590/** Singly-linked list of named transforms. */
     
    438443/***************** Expressions                               *****************/
    439444
     445/** @cond internal */
    440446typedef enum {
    441447        PRECEDENCE_NONE,
     
    446452        PRECEDENCE_MULTIPLY,
    447453} precedence_t;
     454/** @endcond */
    448455
    449456static bithenge_binary_op_t token_as_binary_operator(token_type_t token)
Note: See TracChangeset for help on using the changeset viewer.