Ignore:
Timestamp:
Apr 11, 2017, 6:35:59 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
3720bf8f
Parents:
f674479 (diff), 4f57930 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/generic_types/evaluation/c-stack.h

    rf674479 rda1c772  
    99struct stack new_stack();
    1010
    11 void copy_stack(struct stack* dst, struct stack* src, void* (*copy)(void*));
     11void copy_stack(struct stack* dst, const struct stack* src, void* (*copy)(const void*));
    1212
    13 void clear_stack(struct stack* s);
     13void clear_stack(struct stack* s, void (*free_el)(void*));
    1414
    1515_Bool stack_empty(const struct stack* s);
Note: See TracChangeset for help on using the changeset viewer.