Skip to content

Commit 5745c4e

Browse files
authored
remove useless declaration of signature and use CE-Programming version of CEmu (#627)
* remove duplicate declaration * Update branch.yml * Update make.yml
1 parent e3d53f5 commit 5745c4e

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

.github/workflows/branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Checkout CEmu
9797
uses: actions/checkout@v4
9898
with:
99-
repository: ${{github.repository_owner}}/CEmu
99+
repository: CE-Programming/CEmu
100100
ref: latest-stable
101101
path: ${{env.CEMU_PATH}}
102102
persist-credentials: false

.github/workflows/make.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Checkout CEmu
100100
uses: actions/checkout@v4
101101
with:
102-
repository: ${{github.repository_owner}}/CEmu
102+
repository: CE-Programming/CEmu
103103
ref: latest-stable
104104
path: ${{env.CEMU_PATH}}
105105
persist-credentials: false

examples/library_examples/fatdrvce/fat_dir_tree/src/main.c

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -241,22 +241,6 @@ int main(void)
241241

242242
printf("file count: %u\n", file_count);
243243
printf("dir count: %u\n", dir_count);
244-
245-
/**
246-
* Gets the next directory entry.
247-
* @param dir[in] Initialized directory handle from fat_OpenDir().
248-
* @param entry[out] Pointer to store entry information.
249-
* @return Number of entries found.
250-
*/
251-
fat_error_t fat_ReadDir(fat_dir_t *dir, fat_dir_entry_t *entry);
252-
253-
/**
254-
* Closes an open directory handle.
255-
* @param dir[in] Directory handle.
256-
* @return Number of entries found.
257-
*/
258-
fat_error_t fat_CloseDir(fat_dir_t *dir);
259-
260244

261245
fat_error:
262246
// close the filesystem

0 commit comments

Comments
 (0)