mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-17 13:24:45 +00:00
git subrepo pull (merge) tools/fado (#1501)
subrepo: subdir: "tools/fado" merged: "8d896ee97" upstream: origin: "git@github.com:EllipticEllipsis/fado.git" branch: "master" commit: "8d896ee97" git-subrepo: version: "0.4.5" origin: "git@github.com:ingydotnet/git-subrepo.git" commit: "dbb99be"
This commit is contained in:
parent
9f0b7bb8a3
commit
d4a6b21d46
11 changed files with 160 additions and 101 deletions
|
@ -112,15 +112,15 @@ bool vc_vector_is_equals(vc_vector* vector1, vc_vector* vector2) {
|
|||
return memcmp(vector1->data, vector2->data, size_vector1) == 0;
|
||||
}
|
||||
|
||||
float vc_vector_get_growth_factor() {
|
||||
float vc_vector_get_growth_factor(void) {
|
||||
return GROWTH_FACTOR;
|
||||
}
|
||||
|
||||
size_t vc_vector_get_default_count_of_elements() {
|
||||
size_t vc_vector_get_default_count_of_elements(void) {
|
||||
return DEFAULT_COUNT_OF_ELEMENTS;
|
||||
}
|
||||
|
||||
size_t vc_vector_struct_size() {
|
||||
size_t vc_vector_struct_size(void) {
|
||||
return sizeof(vc_vector);
|
||||
}
|
||||
|
||||
|
|
|
@ -24,13 +24,13 @@ void vc_vector_release(vc_vector* vector);
|
|||
bool vc_vector_is_equals(vc_vector* vector1, vc_vector* vector2);
|
||||
|
||||
// Returns constant value of the vector growth factor.
|
||||
float vc_vector_get_growth_factor();
|
||||
float vc_vector_get_growth_factor(void);
|
||||
|
||||
// Returns constant value of the vector default count of elements.
|
||||
size_t vc_vector_get_default_count_of_elements();
|
||||
size_t vc_vector_get_default_count_of_elements(void);
|
||||
|
||||
// Returns constant value of the vector struct size.
|
||||
size_t vc_vector_struct_size();
|
||||
size_t vc_vector_struct_size(void);
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Element access
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue