1 /* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU LGPLv2. 6 See the file COPYING.LIB. 7 */ 8 9 /* these definitions provide source compatibility to prior versions. 10 Do not include this file directly! */ 11 12 size_t fuse_dirent_size(size_t namelen); 13 14 char *fuse_add_dirent(char *buf, const char *name, const struct stat *stbuf, 15 off_t off); 16 17