Doc and add unsigned long long to array

This commit is contained in:
tezc 2022-02-04 22:20:04 +03:00
parent 70a432412b
commit cb178289d5
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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);