index
:
ducc
main
ducc
nsfisis
about
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
parse.c
Age
Commit message (
Expand
)
Author
2025-10-10
refactor: use |= operator to simplify code
HEAD
main
nsfisis
2025-10-04
feat: implement goto statement
nsfisis
2025-09-28
feat: implement bitwise not operator
nsfisis
2025-09-28
feat: support using function as a value
nsfisis
2025-09-28
feat: implement switch statement
nsfisis
2025-09-28
feat: implement |=, &=, ^=, <<= and >>= operators
nsfisis
2025-09-27
refactor: add src/ducc.h
nsfisis
2025-09-27
feat: allow variable initializer to access previously declared variables
nsfisis
2025-09-15
fix: issue where enumeration cannot be referenced until enum definition compl...
nsfisis
2025-09-15
refactor: move tokenization code from preprocess.c to tokenize.c
nsfisis
2025-09-14
fix: work-around for issue where storage class is changed somewhere
nsfisis
2025-09-14
feat: include <stdlib.h>
nsfisis
2025-09-13
feat: support pointer types with type qualifiers
nsfisis
2025-09-13
feat: allow array size to be omitted
nsfisis
2025-09-13
feat: support cast expression in constant evaluation
nsfisis
2025-09-13
feat: support parsing function pointer declaration
nsfisis
2025-09-13
feat: include <string.h>
nsfisis
2025-09-13
fix: update is_type_token()
nsfisis
2025-09-13
feat: implement cast expression
nsfisis
2025-09-05
feat: skip "restrict" and "volatile"
nsfisis
2025-09-05
feat: support enumerator having constant expression
nsfisis
2025-09-04
feat: use <stdio.h> in ducc sources
nsfisis
2025-09-03
feat: support native bool/true/false
nsfisis
2025-09-03
feat: rewrite function declaration parsing
nsfisis
2025-09-03
feat: partially support floating point number types (parsing only)
nsfisis
2025-09-02
feat: support constant expression in array size
nsfisis
2025-09-01
feat: partially support anonymous structs/unions/enums
nsfisis
2025-09-01
feat: support array type in struct/union members
nsfisis
2025-09-01
feat: support signed/unsigned specifier
nsfisis
2025-09-01
feat: implement bitwise AND and bitwise XOR operators
nsfisis
2025-09-01
feat: support enum with explicit value
nsfisis
2025-08-31
refactor: rewrite parse_type()
nsfisis
2025-08-31
feat: support cast expression (any types can be coerced to any types for now)
nsfisis
2025-08-31
feat: partially support _Noreturn
nsfisis
2025-08-30
feat: rewrite top-level declaration parser
nsfisis
2025-08-30
refactor: define enum StorageClass
nsfisis
2025-08-30
refactor: parse_ident() returns Token so as to get source location
nsfisis
2025-08-29
feat: support more kinds of expressions in #if directive
nsfisis
2025-08-29
fix: dangling pointer
nsfisis
2025-08-29
refactor: add stricter types
nsfisis
2025-08-29
refactor: remove unused variables
nsfisis
2025-08-25
feat: add static to file-local functions
nsfisis
2025-08-25
feat: support static function
nsfisis
2025-08-25
feat: separate compilation
nsfisis
2025-08-24
feat: support (?) static keyword, just ignoring
nsfisis
2025-08-24
fix: *_reserve() may not reserve enough capacity
nsfisis
2025-08-23
feat: allocate array dynamically in parsing
nsfisis
2025-08-22
chore: move *.c and *.h files to src/
nsfisis