view nykyaeka/font.c @ 62:0e2d7767c00d

convcalc_ascii()'s one argument is unused, remove it.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 09 Jul 2011 11:57:54 +0300
parents acb5694e93d9
children
line wrap: on
line source

#include "pwpdemo.h"

#include "font.h"

void writetext(char*txt,unsigned char*font)
{
   int wdt=0;

   int z=*txt-'A',a;

   while(z)
   {
      if(*font==0)z--;
      font++;
   }
   while((a=*font))
   {          
      char*d=   
      for(;a;a>>=1)
      {
         d+=
      }
   }
}