#include <stdio.h>#include <stdlib.h>#include <stdbool.h>#include <string.h>#include <unistd.h>#include <libgen.h>#include <sys/stat.h>#include <sys/file.h>#include "qDecoder.h"#include "qInternal.h"
Go to the source code of this file.
Defines | |
| #define | MAX_EXTENSION_LENGTH |
| #define | MAX_FILESEND_CHUNK_SIZE |
FunctionsTitleTestFour | |
| bool | qFileExist (const char *filepath) |
| char * | qFileGetDir (const char *filepath) |
| char * | qFileGetExt (const char *filepath) |
| char * | qFileGetName (const char *filepath) |
| off_t | qFileGetSize (const char *filepath) |
| void * | qFileLoad (const char *filepath, size_t *nbytes) |
| bool | qFileLock (int fd) |
| void * | qFileRead (FILE *fp, size_t *nbytes) |
| char * | qFileReadLine (FILE *fp) |
| ssize_t | qFileSave (const char *filepath, const void *buf, size_t size, bool append) |
| off_t | qFileSend (int outfd, int infd, off_t nbytes) |
| bool | qFileUnlock (int fd) |
Definition in file qFile.c.
1.5.7.1