mirror of
https://github.com/tezc/sc.git
synced 2025-01-28 07:03:06 +08:00
Doc and add unsigned long long to array
This commit is contained in:
parent
70a432412b
commit
cb178289d5
@ -3,8 +3,8 @@
|
||||
### Overview
|
||||
|
||||
- Growable array/vector.
|
||||
- It comes with predefined types, check out at the end of sc_array.h, you can
|
||||
add there (sc_array_def) if you need more.
|
||||
- It comes with predefined types, check out predefined types at the bottom of
|
||||
sc_array.h You can add more types there if you need.
|
||||
|
||||
### Usage
|
||||
|
||||
|
@ -211,6 +211,7 @@ sc_array_def(int, int);
|
||||
sc_array_def(unsigned int, uint);
|
||||
sc_array_def(long, long);
|
||||
sc_array_def(unsigned long, ulong);
|
||||
sc_array_def(unsigned long long, ull);
|
||||
sc_array_def(uint32_t, 32);
|
||||
sc_array_def(uint64_t, 64);
|
||||
sc_array_def(double, double);
|
||||
|
Loading…
x
Reference in New Issue
Block a user