Changeset 29e7cc7 in mainline for uspace/lib/futil/include/futil.h


Ignore:
Timestamp:
2025-04-18T15:14:10Z (2 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
e77c3ed
Parents:
800d188 (diff), 25fdb2d (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.
Message:

Merge branch 'upstream/master' into helenraid

File:
1 edited

Legend:

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

    r800d188 r29e7cc7  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
     2 * Copyright (c) 2025 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3838#define FUTIL_H
    3939
     40#include <errno.h>
    4041#include <stddef.h>
     42#include "types/futil.h"
    4143
    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 *);
     44extern errno_t futil_create(futil_cb_t *, void *, futil_t **);
     45extern void futil_destroy(futil_t *);
     46extern errno_t futil_copy_file(futil_t *, const char *, const char *);
     47extern errno_t futil_rcopy_contents(futil_t *, const char *, const char *);
     48extern errno_t futil_get_file(futil_t *, const char *, void **, size_t *);
    4549
    4650#endif
Note: See TracChangeset for help on using the changeset viewer.