Ticket #36397: patch-show.c.diff

File patch-show.c.diff, 2.3 KB (added by stevecheckoway (Stephen Checkoway), 12 years ago)
  • show.c

    old new  
    99#include <math.h>
    1010#include "jgraph.h"
    1111
    12 static spaces(nsp)
    13 int nsp;
     12static void spaces(int nsp)
    1413{
    1514  while(nsp-- > 0) putchar(' ');
    1615}
    1716
    18 float ptoin(p)
    19 float p;
     17static float ptoin(float p)
    2018{
    2119  return p / FCPI;
    2220}
    2321
    24 float ptoc(p, a)
    25 float p;
    26 Axis a;
     22static float ptoc(float p, Axis a)
    2723{
    2824  if (a->is_lg) {
    2925    return (float) exp((p / a->factor + a->logmin) * a->logfactor);
    Axis a; 
    3228  }
    3329}
    3430
    35 float ptodist(p, a)
    36 float p;
    37 Axis a;
     31static float ptodist(float p, Axis a)
    3832{
    3933  if (a->is_lg) {
    4034    return p  / FCPI;
    Axis a; 
    4337  }
    4438}
    4539
    46 static show_mltiline(s)
    47 char *s;
     40static void show_mltiline(const char *s)
    4841{
    4942  int i;
    5043
    char *s; 
    5750  putchar('\n');
    5851}
    5952
    60 show_string(s)
    61 char *s;
     53static void show_string(const char *s)
    6254{
    6355  int i;
    6456
    char *s; 
    7466}
    7567   
    7668   
    77 show_label(l, nsp, g)
    78 Label l;
    79 int nsp;
    80 Graph g;
     69static void show_label(Label l, int nsp, Graph g)
    8170{
    8271  spaces(nsp);
    8372  show_string(l->label);
    Graph g; 
    9887  return;
    9988}
    10089
    101 show_lmark(l, nsp, g)
    102 Label l;
    103 int nsp;
    104 Graph g;
     90static void show_lmark(Label l, int nsp, Graph g)
    10591{
    10692  spaces(nsp); show_string(l->label);
    10793  spaces(nsp); printf("x %f ", ptodist(l->x, g->x_axis));
    Graph g; 
    11096               printf("rotate %f\n", l->rotate);
    11197  spaces(nsp); printf("font %s ", l->font);
    11298               printf("fontsize %f\n", l->fontsize);
    113   return;
    11499}
    115100
    116 show_curve(c, nsp, g)
    117 Curve c;
    118 int nsp;
    119 Graph g;
     101static void show_curve(Curve c, int nsp, Graph g)
    120102{
    121103  Point p;
    122104  Point px;
    Graph g; 
    251233                          ptodist(c->asize[1], g->y_axis) * 2.0);
    252234}
    253235
    254 show_axis(a, nsp, g)
    255 Axis a;
    256 int nsp;
    257 Graph g;
     236static void show_axis(Axis a, int nsp, Graph g)
    258237{
    259238  Axis other;
    260239  Hash h;
    Graph g; 
    342321  }
    343322}
    344323
    345 show_legend(l, nsp, g)
    346 Legend l;
    347 int nsp;
    348 Graph g;
     324static void show_legend(Legend l, int nsp, Graph g)
    349325{
    350326  if (l->type == 'c') {
    351327    spaces(nsp); printf("custom\n");
    Graph g; 
    362338  }
    363339}
    364340
    365 show_graph(g, nsp)
    366 Graph g;
    367 int nsp;
     341static void show_graph(Graph g, int nsp)
    368342{
    369343
    370344  Curve c;
    int nsp; 
    394368  }
    395369}
    396370
    397 show_graphs(gs)
    398 Graphs gs;
     371void show_graphs(Graphs gs)
    399372{
    400373  Graphs the_g;
    401374  Graph g;