mirror of
https://github.com/google/pebble.git
synced 2025-11-22 15:30:55 -05:00
spelling: iteration
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -126,7 +126,7 @@ typedef struct {
|
|||||||
//! Callback used for using settings_file_each.
|
//! Callback used for using settings_file_each.
|
||||||
//! The bool returned is used to control the iteration.
|
//! The bool returned is used to control the iteration.
|
||||||
//! - If a callback returns true, the iteration continues
|
//! - If a callback returns true, the iteration continues
|
||||||
//! - If a callback returns false, the ieration stops.
|
//! - If a callback returns false, the iteration stops.
|
||||||
typedef bool (*SettingsFileEachCallback)(SettingsFile *file,
|
typedef bool (*SettingsFileEachCallback)(SettingsFile *file,
|
||||||
SettingsRecordInfo *info,
|
SettingsRecordInfo *info,
|
||||||
void *context);
|
void *context);
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ typedef struct ListNode {
|
|||||||
typedef bool (*ListFilterCallback)(ListNode *found_node, void *data);
|
typedef bool (*ListFilterCallback)(ListNode *found_node, void *data);
|
||||||
|
|
||||||
//! - If a callback returns true, the iteration continues
|
//! - If a callback returns true, the iteration continues
|
||||||
//! - If a callback returns false, the ieration stops.
|
//! - If a callback returns false, the iteration stops.
|
||||||
typedef bool (*ListForEachCallback)(ListNode *node, void *context);
|
typedef bool (*ListForEachCallback)(ListNode *node, void *context);
|
||||||
|
|
||||||
#define LIST_NODE_NULL { .next = NULL, .prev = NULL }
|
#define LIST_NODE_NULL { .next = NULL, .prev = NULL }
|
||||||
|
|||||||
Reference in New Issue
Block a user