Renamed plugin SDK utils to plugin_utils to prevent filename conflicts in plugins

This commit is contained in:
Alexandre Paillier
2023-12-06 14:31:50 +01:00
parent 180f321eb4
commit 0f2d026b40
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*****************************************************************************/
#include "utils.h"
#include "plugin_utils.h"
bool find_selector(uint32_t selector, const uint32_t *array, size_t size, size_t *idx) {
for (size_t i = 0; i < size; ++i) {

View File

@@ -210,8 +210,8 @@ if __name__ == "__main__":
files_to_copy = [
"main.c",
"utils.c",
"utils.h",
"plugin_utils.c",
"plugin_utils.h",
]
for file in files_to_copy:
shutil.copyfile("src_plugin_sdk/" + file,