-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfor_each.h
More file actions
26 lines (22 loc) · 723 Bytes
/
for_each.h
File metadata and controls
26 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* The MIT License (MIT)
*
* Copyright (c) 2020 - 2022 TheVice
*
*/
#ifndef _FOR_EACH_H_
#define _FOR_EACH_H_
#include <stdint.h>
uint8_t for_each_get_attributes_and_arguments_for_task(
const uint8_t*** task_attributes, const uint8_t** task_attributes_lengths,
uint8_t* task_attributes_count, void* task_arguments);
uint8_t for_each_evaluate_task(
void* the_project, const void* the_target,
const uint8_t* attributes_finish, const uint8_t* element_finish,
void* task_arguments,
uint8_t fail_on_error, uint8_t verbose);
uint8_t do_evaluate_task(
void* the_project, const void* the_target,
const uint8_t* attributes_finish, const uint8_t* element_finish,
void* task_arguments, uint8_t verbose);
#endif