annotate include/core/array.h @ 75:d3e9310598b1

*: refactor some stuff text: "TextParagraph"s are now called sections, because that's the actual word for it :P text: new classes: Line and OneLineSection, solves many problems with paragraphs that are only one line long (ex. going out of bounds) http: reworked http stuff to allow threaded get requests, also moved it to its own file to (hopefully) remove clutter eventually I'll make a threaded post request method and use that in the "basic" function
author Paper <mrpapersonic@gmail.com>
date Wed, 04 Oct 2023 01:42:30 -0400
parents 2743011a6042
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
1 #ifndef __core__array_h
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
2 #define __core__array_h
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
3
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
4 #ifndef ARRAYSIZE
36
2743011a6042 *: mass update
Paper <mrpapersonic@gmail.com>
parents: 35
diff changeset
5 # define ARRAYSIZE(x) (sizeof(x) / sizeof(x[0]))
35
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
6 #endif
329b7921a6be ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents: 20
diff changeset
7
19
d05b1be2f3a6 anime_list.cpp: fix build failures on linux
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
8 #endif // __core__array_h