Overview
Comment: | Freecolor 0.8.9 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.8.9 |
Files: | files | file ages | folders |
SHA1: |
089015dd604a9a33d4928045ee59940d |
User & Date: | rkeene on 2013-11-26 16:31:49 |
Other Links: | manifest | tags |
Context
2013-11-26
| ||
16:33 | Removed extraneous include check-in: 14d026a41c user: rkeene tags: trunk | |
16:31 | Freecolor 0.8.9 check-in: 089015dd60 user: rkeene tags: trunk, 0.8.9 | |
16:31 | Corrected some build issues check-in: 0c3407a37c user: rkeene tags: trunk | |
Changes
Modified freecolor.c from [bf8bf147e2] to [3c89f7d0de].
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.8"
extern char *optarg;
extern int optind, opterr, optopt;
void bargraph(float percent, float secondper, char marks[BARLEN+HEADERLEN+1],int usefull) {
char percentone[BARLEN+1], percenttwo[BARLEN+1], remain[BARLEN+1];
|
| |
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.9"
extern char *optarg;
extern int optind, opterr, optopt;
void bargraph(float percent, float secondper, char marks[BARLEN+HEADERLEN+1],int usefull) {
char percentone[BARLEN+1], percenttwo[BARLEN+1], remain[BARLEN+1];
|