Annotation of rpm2html/stringbuf.h, revision 1.1

1.1     ! daniel      1: /*
        !             2:  * stringbuf.h: interface for the String buffering module.
        !             3:  */
        !             4: 
        !             5: #ifndef __STRINGBUF_H__
        !             6: #define __STRINGBUF_H__
        !             7: 
        !             8: #ifndef CHAR
        !             9: #define CHAR char
        !            10: #endif
        !            11: 
        !            12: CHAR *stringDup(CHAR *str);
        !            13: void  stringFree(CHAR *str);
        !            14: 
        !            15: #endif /* __STRINGBUF_H__ */

Webmaster