Changeset 1064 in MondoRescue for branches/stable/mondo/src/include/mr_mem.h


Ignore:
Timestamp:
Jan 23, 2007, 1:09:32 AM (17 years ago)
Author:
Bruno Cornec
Message:

More controls at the compiler level
still working with the problems around variable arguments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/include/mr_mem.h

    r1061 r1064  
    1616/* functions (public methods) */
    1717
    18 extern void mr_free(char *allocated);
    19 extern void mr_allocstr(char *alloc, const char *orig);
    20 extern void mr_asprintf(char **alloc, const char *fmt, va_list args);
    21 extern void mr_getline(char **lineptr, size_t *n, FILE *stream);
    22 extern void *mr_malloc(size_t size);
     18extern inline void mr_free(char *allocated);
     19extern inline void mr_allocstr(char *alloc, const char *orig);
     20extern inline void mr_asprintf(char **alloc, const char *fmt, ...);
     21extern inline void mr_getline(char **lineptr, size_t *n, FILE *stream);
     22extern inline void *mr_malloc(size_t size);
    2323
    2424#endif                          /* MR_MEM_H */
Note: See TracChangeset for help on using the changeset viewer.