Changeset 3acb63b5 in mainline for uspace/lib/futil/include/futil.h
- Timestamp:
- 2025-04-09T20:01:05Z (6 days ago)
- Children:
- a92290d
- Parents:
- 9f945464 (diff), a188131 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Wayne Thornton <wmthornton-dev@…> (2025-04-09 20:01:05)
- git-committer:
- GitHub <noreply@…> (2025-04-09 20:01:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/futil/include/futil.h
r9f945464 r3acb63b5 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #define FUTIL_H 39 39 40 #include <errno.h> 40 41 #include <stddef.h> 42 #include "types/futil.h" 41 43 42 extern errno_t futil_copy_file(const char *, const char *); 43 extern errno_t futil_rcopy_contents(const char *, const char *); 44 extern errno_t futil_get_file(const char *, void **, size_t *); 44 extern errno_t futil_create(futil_cb_t *, void *, futil_t **); 45 extern void futil_destroy(futil_t *); 46 extern errno_t futil_copy_file(futil_t *, const char *, const char *); 47 extern errno_t futil_rcopy_contents(futil_t *, const char *, const char *); 48 extern errno_t futil_get_file(futil_t *, const char *, void **, size_t *); 45 49 46 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.