Changes in uspace/lib/futil/include/futil.h [a188131:04e520e] in mainline
- File:
 - 
      
- 1 edited
 
- 
          
  uspace/lib/futil/include/futil.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/futil/include/futil.h
ra188131 r04e520e 1 1 /* 2 * Copyright (c) 202 5Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #define FUTIL_H 39 39 40 #include <errno.h>41 40 #include <stddef.h> 42 #include "types/futil.h"43 41 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 *); 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 *); 49 45 50 46 #endif  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  