/* call-seq: * lineskip -> Integer * * Return the recommended distance (in pixels) from a point on a line of text * to the same point on the line of text below it. */ VALUE rbgm_ttf_lineskip(VALUE self) { TTF_Font *font; Data_Get_Struct(self,TTF_Font,font); return INT2NUM(TTF_FontLineSkip(font)); }