abdelrahman
|
4a92f55f17
|
Reformat
Release / release (push) Successful in 3s
|
2026-09-20 21:44:48 +01:00 |
|
abdelrahman
|
3c81feedbb
|
Add wpArrayRemoveSwapEnd
Release / release (push) Successful in 3s
|
2026-09-19 22:41:10 +01:00 |
|
abdelrahman
|
605c1ddfae
|
Add wpArrayZero
Release / release (push) Successful in 3s
|
2026-09-16 01:28:11 +01:00 |
|
abdelrahman
|
9226891bb9
|
wpArrayClear memsets members to 0
Release / release (push) Successful in 3s
|
2026-09-13 21:14:11 +01:00 |
|
abdelrahman
|
575e0a52b1
|
Add labels to all typedef'd structs and enums
Release / release (push) Successful in 4s
|
2026-09-13 02:31:46 +01:00 |
|
abdelrahman
|
5e67c596b9
|
Remove all uses of names starting with underscore
Release / release (push) Successful in 3s
|
2026-09-06 18:15:23 +01:00 |
|
Abdelrahman Said
|
e015dfceda
|
Add aliases for integer constants
Release / release (push) Successful in 3s
|
2026-09-02 00:11:23 +01:00 |
|
abdelrahman
|
2a20362b44
|
Add free array and queue utils
Release / release (push) Successful in 7s
|
2026-07-05 20:51:17 +01:00 |
|
abdelrahman
|
a998f6b981
|
Standardize naming conventions (#12)
Release / release (push) Successful in 8s
## Summary
Standardize naming conventions across the entire wizapp-stdlib codebase by replacing inconsistent prefixes and snake_case with a unified `wp` prefix + CamelCase scheme.
## Changes
### Naming convention applied
| Pattern | Before | After |
|---|---|---|
| Public functions | `wapp_module_function` | `wpModuleFunction` |
| Public types | `GenericXxx`, bare `Xxx` | `WpXxx` |
| Constants / enum values | `WAPP_XXX`, `SHELL_XXX` | `WP_XXX`, `WP_SHELL_XXX` |
| Internal functions | `_module_function` | `_moduleFunction` |
| Storage-class macros | `wapp_extern`, `wapp_intern` | `wp_extern`, `wp_intern` |
### Modules affected
All 20 modules were renamed: `arena`, `array`, `dbl_list`, `queue`, `str8`, `mem_allocator`, `mem_utils`, `mem_os`, `file`, `cpath`, `log`, `shell_commander`, `shell_termcolour`, `shell_utils`, `prng/xorshift`, `uuid`, `tester`, `aliases`, `assert`, `misc_utils`, `platform` — plus their test files.
### Backward compatibility
Added `src/oldnames.h` with `#define OLD_NAME NEW_NAME` for every renamed symbol, organized by module under Constants → Types → Functions sections. Existing code that includes this file will compile without changes.
Reviewed-on: #12
Co-authored-by: Abdelrahman <said.abdelrahman89@gmail.com>
Co-committed-by: Abdelrahman <said.abdelrahman89@gmail.com>
|
2026-06-26 17:17:27 +00:00 |
|
Abdelrahman Said
|
8e41b627bc
|
Add function to create array from preallocated buffer
|
2026-01-24 20:45:52 +00:00 |
|
Abdelrahman Said
|
7a54c28c0f
|
Update array allocation functions
|
2026-01-24 12:17:15 +00:00 |
|
Abdelrahman Said
|
21ac756fad
|
Pass init flags to allocating array utilities
|
2026-01-19 06:09:36 +00:00 |
|
abdelrahman
|
1e536cc3ba
|
Rename array alloc size utility
|
2026-01-11 21:58:49 +00:00 |
|
abdelrahman
|
a4492cf8e8
|
Switch array fill to flags
|
2026-01-11 20:17:09 +00:00 |
|
abdelrahman
|
ce76ac1e7c
|
Add utility to calculate allocation size for array
|
2026-01-11 19:44:22 +00:00 |
|
abdelrahman
|
b88cb71aa8
|
Update array and dbl list macros
|
2026-01-05 03:57:50 +00:00 |
|
abdelrahman
|
1f3df20b7d
|
Reformat
|
2026-01-03 19:13:42 +00:00 |
|
abdelrahman
|
83b879a180
|
Always reserve padding for structs that need it
|
2026-01-03 17:04:36 +00:00 |
|
abdelrahman
|
abad2fa02a
|
Add padding to stack array
|
2026-01-03 03:14:53 +00:00 |
|
abdelrahman
|
c2a156e256
|
Remove array structs (#10)
Reviewed-on: #10
|
2026-01-02 16:50:52 +00:00 |
|
abdelrahman
|
f3ee1ee468
|
Unify struct names and tags
|
2026-01-02 14:00:00 +00:00 |
|
abdelrahman
|
54691a8ede
|
Reformat base
|
2026-01-02 00:29:24 +00:00 |
|
abdelrahman
|
ad2de98093
|
Switch to using tabs instead of spaces (#9)
Reviewed-on: #9
|
2025-12-29 22:46:52 +00:00 |
|
abdelrahman
|
aa6ef1ec2c
|
Reformat
|
2025-12-29 15:44:34 +00:00 |
|
abdelrahman
|
5e939a7158
|
Add option to fill array when allocating
|
2025-12-28 18:49:27 +00:00 |
|
abdelrahman
|
1cbb148a1f
|
Add ability to fill array with capacity
|
2025-12-28 18:31:49 +00:00 |
|
abdelrahman
|
4ea30f0762
|
No codegen doubly-linked list (#8)
Reviewed-on: #8
Co-authored-by: Abdelrahman <said.abdelrahman89@gmail.com>
Co-committed-by: Abdelrahman <said.abdelrahman89@gmail.com>
|
2025-12-17 03:53:13 +00:00 |
|
abdelrahman
|
4b95a681d4
|
Restructure the library layers
|
2025-12-16 17:36:50 +00:00 |
|