Changeset 50985c34 in mainline for uspace/app/bithenge/file.h


Ignore:
Timestamp:
2012-06-01T00:04:30Z (13 years ago)
Author:
Sean Bartell <wingedtachikoma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
11b9ad7
Parents:
5c5c346a
Message:

Bithenge: create file blobs from fds and FILE*s

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bithenge/file.h

    r5c5c346a r50985c34  
    3838#define BITHENGE_FILE_H_
    3939
     40#include <stdio.h>
    4041#include "blob.h"
    4142
    42 int bithenge_new_file_blob(bithenge_blob_t **, const char *filename);
     43int bithenge_new_file_blob(bithenge_blob_t **, const char *);
     44int bithenge_new_file_blob_from_fd(bithenge_blob_t **, int);
     45int bithenge_new_file_blob_from_file(bithenge_blob_t **, FILE *);
    4346
    4447#endif
Note: See TracChangeset for help on using the changeset viewer.