Skip to content

Commit b70dc91

Browse files
committed
Added a vector for uint64_t
1 parent 64fb90d commit b70dc91

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* CallstackLibrary - Library creating human-readable call stacks.
3+
*
4+
* Copyright (C) 2024 mhahnFr
5+
*
6+
* This file is part of the CallstackLibrary.
7+
*
8+
* The CallstackLibrary is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* The CallstackLibrary is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License along with the
19+
* CallstackLibrary, see the file LICENSE. If not, see <https://www.gnu.org/licenses/>.
20+
*/
21+
22+
#ifndef vector_uint64_h
23+
#define vector_uint64_h
24+
25+
#include <stdint.h>
26+
27+
#include <DC4C/vector.h>
28+
29+
typedef_vector_light_named(uint64, uint64_t);
30+
31+
#endif /* vector_uint64_h */

0 commit comments

Comments
 (0)