Doxygen documentation corrected and completed.
This commit is contained in:
@ -3,8 +3,8 @@
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file private_at_functions.h
|
||||
* @author Celine Mercier
|
||||
* @file private_at_functions.c
|
||||
* @author Celine Mercier (celine.mercier@metabarcoding.org)
|
||||
* @date 15 June 2015
|
||||
* @brief Private replacement functions for *at functions.
|
||||
*/
|
||||
@ -23,14 +23,7 @@
|
||||
#include "obierrno.h"
|
||||
|
||||
|
||||
#define DEBUG_LEVEL 0
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
*
|
||||
* D E F I N I T I O N O F T H E P U B L I C F U N C T I O N S
|
||||
*
|
||||
**********************************************************************/
|
||||
#define DEBUG_LEVEL 0 // TODO has to be defined somewhere else (cython compil flag?)
|
||||
|
||||
|
||||
char* get_full_path(int directory_file_descriptor, const char* path_name)
|
||||
@ -77,39 +70,3 @@ DIR* private_opendirat(int directory_file_descriptor, const char* path_name)
|
||||
}
|
||||
|
||||
|
||||
//int private_openat(int directory_file_descriptor, const char* path_name, int flags)
|
||||
//{
|
||||
// char* full_path;
|
||||
// int file_descriptor;
|
||||
//
|
||||
// full_path = get_full_path(directory_file_descriptor, path_name);
|
||||
// if (full_path == NULL)
|
||||
// return -1;
|
||||
//
|
||||
// file_descriptor = open(full_path, flags);
|
||||
//
|
||||
// free(full_path);
|
||||
//
|
||||
// return file_descriptor;
|
||||
//}
|
||||
//
|
||||
//
|
||||
//int private_mkdirat(int directory_file_descriptor, const char* path_name, mode_t mode)
|
||||
//{
|
||||
// char* full_path;
|
||||
//
|
||||
// full_path = get_full_path(directory_file_descriptor, path_name);
|
||||
// if (full_path == NULL)
|
||||
// return -1;
|
||||
//
|
||||
// if (mkdir(full_path, mode) < 0)
|
||||
// {
|
||||
// free(full_path);
|
||||
// return -1;
|
||||
// }
|
||||
//
|
||||
// free(full_path);
|
||||
//
|
||||
// return 0;
|
||||
//}
|
||||
|
||||
|
Reference in New Issue
Block a user