- Timestamp:
- Mar 6, 2024, 2:40:17 AM (14 months ago)
- Location:
- branches/3.3/mondo/src/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/mondo/src/include/mr_file.h
r3613 r3845 23 23 #define mr_getcwd() mr_getcwd_int(__LINE__,__FILE__) 24 24 25 extern FILE *mr_fopen_int(const char *path, const char *mode,int line, c har *file);26 extern FILE *mr_fprintf_int(FILE *stream,int line, c har *file, const char *fmt, ...);27 extern void mr_fclose_int(FILE **fd, int line, c har *file);28 extern void mr_mkdir_int(const char *pathname, mode_t mode, int line, c har *file);29 extern char *mr_getcwd_int(int line, c har *file);25 extern FILE *mr_fopen_int(const char *path, const char *mode,int line, const char *file); 26 extern FILE *mr_fprintf_int(FILE *stream,int line, const char *file, const char *fmt, ...); 27 extern void mr_fclose_int(FILE **fd, int line, const char *file); 28 extern void mr_mkdir_int(const char *pathname, mode_t mode, int line, const char *file); 29 extern char *mr_getcwd_int(int line, const char *file); 30 30 31 31 #endif /* MR_FILE_H */ -
branches/3.3/mondo/src/include/mr_mem.h
r3837 r3845 27 27 /* Internal function bringing debuging info 28 28 * called indirectly through macros */ 29 MR_EXTERN void mr_free_int(void **allocated, int line, c har *file);30 MR_EXTERN void mr_asprintf_int(char **alloc, int line, c har *file, const char *fmt, ...);31 MR_EXTERN void mr_getline_int(char **lineptr, FILE *stream, int line, c har *file);32 MR_EXTERN void *mr_malloc_int(size_t size, int line, c har *file);33 MR_EXTERN void mr_setenv_int(const char *name, const char *value, int line, c har *file);34 extern void mr_strcat_int(char **in, int line,char *file, const char *fmt, ...);29 MR_EXTERN void mr_free_int(void **allocated, int line, const char *file); 30 MR_EXTERN void mr_asprintf_int(char **alloc, int line, const char *file, const char *fmt, ...); 31 MR_EXTERN void mr_getline_int(char **lineptr, FILE *stream, int line, const char *file); 32 MR_EXTERN void *mr_malloc_int(size_t size, int line, const char *file); 33 MR_EXTERN void mr_setenv_int(const char *name, const char *value, int line, const char *file); 34 MR_EXTERN void mr_strcat_int(char **in, int line, const char *file, const char *fmt, ...); 35 35 36 36 #endif /* MR_MEM_H */ -
branches/3.3/mondo/src/include/mr_std.h
r3708 r3845 2 2 * $Id$ 3 3 * 4 * Header file of mr_std: a set of function to qupport GNU89/C11 standards4 * Header file of mr_std: a set of function to support GNU89/C11 standards 5 5 * Provided under the GPL v2 6 6 */ -
branches/3.3/mondo/src/include/mr_sys.h
r3708 r3845 19 19 /* Internal function bringing debuging info 20 20 * called indirectly through macros */ 21 MR_EXTERN int mr_system_int(int line, c har *file, const char *fmt, ...);21 MR_EXTERN int mr_system_int(int line, const char *file, const char *fmt, ...); 22 22 23 23 /* functions (public methods) */
Note:
See TracChangeset
for help on using the changeset viewer.