|
libcfe
0.12.1
some useful C-functions
|
#include "config.h"#include "mv.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <errno.h>#include <libintl.h>#include "create_path.h"#include "output.h"Go to the source code of this file.
Functions | |
| int | mv (const char *file, int file_len, const char *src, int src_len, const char *dest, int dest_len) |
| int mv | ( | const char * | file, |
| int | file_len, | ||
| const char * | src, | ||
| int | src_len, | ||
| const char * | dest, | ||
| int | dest_len | ||
| ) |
Move a file from one directory to another.
| [in] | file | The name of the file to move. |
| [in] | file_len | The length of the file name, or 0 when unknown. |
| [in] | src | The source path where the file can be found. |
| [in] | src_len | The length of the source path, or 0 when unknown. |
| [in] | dest | The destination path where the file must be move to. |
| [in] | dest_len | The length of the destination path, or 0 when unknown. |
Definition at line 13 of file mv.c.