[BACK]Return to out.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/out.c between version 1.3 and 1.7

version 1.3, 2009/10/07 12:35:24 version 1.7, 2009/10/22 18:59:00
Line 16 
Line 16 
  */   */
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <string.h>
   #include <time.h>
   
 #include "out.h"  #include "out.h"
   
   #ifdef __linux__
   extern  size_t    strlcat(char *, const char *, size_t);
   #endif
   
 /*  /*
  * Convert a `scaling unit' to a consistent form, or fail.  Scaling   * Convert a `scaling unit' to a consistent form, or fail.  Scaling
  * units are documented in groff.7, which stipulates the following:   * units are documented in groff.7, mdoc.7, man.7.
  *  
  *  (1) A scaling unit is a signed/unsigned integer/float with or  
  *      without a unit.  
  *  
  *  (2) The following units exist:  
  *      c       Centimeter  
  *      i       Inch  
  *      P       Pica = 1/6 inch  
  *      p       Point = 1/72 inch  
  *      m       Em = the font size in points (width of letter m)  
  *      M       100th of an Em  
  *      n       En = Em/2  
  *      u       Basic unit for actual output device  
  *      v       Vertical line space in basic units scaled point =  
  *              1/sizescale of a point (defined in font DESC file)  
  *      f       Scale by 65536.  
  */   */
 int  int
 a2roffsu(const char *src, struct roffsu *dst)  a2roffsu(const char *src, struct roffsu *dst, enum roffscale def)
 {  {
         char             buf[BUFSIZ], *p;          char             buf[BUFSIZ], hasd;
         int              i;          int              i;
         enum roffscale   unit;          enum roffscale   unit;
   
         for (p = buf, i = 0; i < BUFSIZ && isdigit((u_char)*src); i++)          if ('\0' == *src)
                 *p++ = *src++;                  return(0);
   
           i = hasd = 0;
   
           switch (*src) {
           case ('+'):
                   src++;
                   break;
           case ('-'):
                   buf[i++] = *src++;
                   break;
           default:
                   break;
           }
   
           if ('\0' == *src)
                   return(0);
   
           while (i < BUFSIZ) {
                   if ( ! isdigit((u_char)*src)) {
                           if ('.' != *src)
                                   break;
                           else if (hasd)
                                   break;
                           else
                                   hasd = 1;
                   }
                   buf[i++] = *src++;
           }
   
         if (BUFSIZ == i || (*src && *(src + 1)))          if (BUFSIZ == i || (*src && *(src + 1)))
                 return(0);                  return(0);
   
         *p = '\0';          buf[i] = '\0';
   
         switch (*src) {          switch (*src) {
         case ('c'):          case ('c'):
Line 81  a2roffsu(const char *src, struct roffsu *dst)
Line 99  a2roffsu(const char *src, struct roffsu *dst)
                 unit = SCALE_EM;                  unit = SCALE_EM;
                 break;                  break;
         case ('\0'):          case ('\0'):
                 /* FALLTHROUGH */                  if (SCALE_MAX == def)
                           return(0);
                   unit = SCALE_BU;
                   break;
         case ('u'):          case ('u'):
                 unit = SCALE_BU;                  unit = SCALE_BU;
                 break;                  break;
Line 95  a2roffsu(const char *src, struct roffsu *dst)
Line 116  a2roffsu(const char *src, struct roffsu *dst)
                 return(0);                  return(0);
         }          }
   
         if ((dst->scale = atoi(buf)) < 0)          if ((dst->scale = atof(buf)) < 0)
                 dst->scale = 0;                  dst->scale = 0;
         dst->unit = unit;          dst->unit = unit;
           dst->pt = hasd;
   
         return(1);          return(1);
 }  }
   
   
   /*
    * Correctly writes the time in nroff form, which differs from standard
    * form in that a space isn't printed in lieu of the extra %e field for
    * single-digit dates.
    */
   void
   time2a(time_t t, char *dst, size_t sz)
   {
           struct tm        tm;
           char             buf[5];
           char            *p;
           size_t           nsz;
   
           assert(sz > 1);
           localtime_r(&t, &tm);
   
           p = dst;
           nsz = 0;
   
           dst[0] = '\0';
   
           if (0 == (nsz = strftime(p, sz, "%B ", &tm)))
                   return;
   
           p += (int)nsz;
           sz -= nsz;
   
           if (0 == strftime(buf, sizeof(buf), "%e, ", &tm))
                   return;
   
           nsz = strlcat(p, buf + (' ' == buf[0] ? 1 : 0), sz);
   
           if (nsz >= sz)
                   return;
   
           p += (int)nsz;
           sz -= nsz;
   
           (void)strftime(p, sz, "%Y", &tm);
   }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.7

CVSweb