Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/futil/include/futil.h

    ra188131 r04e520e  
    11/*
    2  * Copyright (c) 2025 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3838#define FUTIL_H
    3939
    40 #include <errno.h>
    4140#include <stddef.h>
    42 #include "types/futil.h"
    4341
    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 *);
     42extern errno_t futil_copy_file(const char *, const char *);
     43extern errno_t futil_rcopy_contents(const char *, const char *);
     44extern errno_t futil_get_file(const char *, void **, size_t *);
    4945
    5046#endif
Note: See TracChangeset for help on using the changeset viewer.