/* my own printf.
 * better than the crufty library one.
 */
int attribute (
    /* the object to print to */
    void *my_object,
    
    /* format string, ala printf */
    const char *my_format,
    
    /* arguments */
    ...)
				    __attribute__ ((format (printf, 2, 3)));



syntax highlighted by Code2HTML, v. 0.9.1