Skip to content
Snippets Groups Projects
sfont.h 298 B
Newer Older
  • Learn to ignore specific revisions
  • teuben's avatar
    teuben committed
    #ifndef SFONT_H
    #define SFONT_H
    
    #include "geometry.h"	/* for Point, CONST, COUNT() */
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    extern float sfStrWidth( CONST char *str );
    
    extern float sfStrDraw( CONST char *str, float height, CONST Point *base );
    
    #ifdef __cplusplus
    }
    #endif
    
    #endif /*SFONT_H*/