source: src/tests/vector/vector_int.c@ 20340c2

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 20340c2 was ed0e67a, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

add stdhdr directory to includes, containing extern "C" include wrappers for standard C include files

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[86bd7c1f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[eab39cd]7// vector_int.c --
[86bd7c1f]8//
9// Author : Richard C. Bilson
10// Created On : Wed May 27 17:56:53 2015
[ed0e67a]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jul 5 21:00:56 2016
13// Update Count : 4
[86bd7c1f]14//
[51b73452]15
16#include "vector_int.h"
17#include <stdlib.h>
18#include <assert.h>
19
20#define DEFAULT_CAPACITY 20
21
[eab39cd]22void ?{}( vector_int * vec ) {
23 vec { DEFAULT_CAPACITY };
[51b73452]24}
25
[eab39cd]26void ?{}( vector_int * vec, int reserve ) {
27 vec->last = -1;
28 vec->capacity = reserve;
29 vec->data = malloc( sizeof( int ) * reserve );
[51b73452]30}
31
[1ad1c99e]32void ?{}( vector_int * vec, vector_int other ) {
33 vec->last = other.last;
34 vec->capacity = other.capacity;
35 vec->data = malloc( sizeof( int ) * other.capacity );
36 for (int i = 0; i < vec->last; i++) {
37 vec->data[i] = other.data[i];
38 }
39}
40
[eab39cd]41void ^?{}( vector_int * vec ) {
42 free( vec->data );
[51b73452]43}
44
[134b86a]45void reserve( vector_int *vec, int reserve ) {
[86bd7c1f]46 if ( reserve > vec->capacity ) {
47 vec->data = realloc( vec->data, sizeof( int ) * reserve );
48 vec->capacity = reserve;
49 }
[51b73452]50}
51
[134b86a]52void append( vector_int *vec, int element ) {
[86bd7c1f]53 vec->last++;
54 if ( vec->last == vec->capacity ) {
55 vec->capacity *= 2;
56 vec->data = realloc( vec->data, sizeof( int ) * vec->capacity );
57 }
58 vec->data[ vec->last ] = element;
[51b73452]59}
60
61// implement bounded_array
62
[1ad1c99e]63lvalue int ?[?]( vector_int * vec, int index ) {
64 return vec->data[ index ];
[51b73452]65}
66
[1ad1c99e]67int last( vector_int * vec ) {
68 return vec->last;
[51b73452]69}
70
[86bd7c1f]71
72// Local Variables: //
73// tab-width: 4 //
74// compile-command: "cfa vector_int.c" //
75// End: //
Note: See TracBrowser for help on using the repository browser.