(minor comments)

also, tested `timer__schedule()` and it works too!  at least for 1
function.  soooooo cool :D
partial-rewrite
Ben Blazak 2013-05-09 21:11:30 -07:00
parent 203aaf415b
commit b5b5db12a7
2 changed files with 2 additions and 7 deletions

View File

@ -51,9 +51,7 @@
* Assumptions:
*
* - Lists will never contain more elements than can be indexed by an `int8_t`
*
*
* TODO: go over this again, in a little while, to make sure i like it
* (i.e. 128)
*/

View File

@ -6,9 +6,6 @@
/** description
* Implements the list type in "../list.h"
*
*
* TODO: go over this again, in a little while, to make sure i like it
*/
@ -18,7 +15,7 @@
// ----------------------------------------------------------------------------
#define N(name) ((list__node_t *)name)
#define N(name) ((list__node_t *)name) // cast to `list__node_t *`
// ----------------------------------------------------------------------------