Overview
| Comment: | Freecolor 0.8.10 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | 0.8.10 |
| Files: | files | file ages | folders |
| SHA1: |
544e1dfdaf390be94ee5239c46c31f58 |
| User & Date: | rkeene on 2013-11-26 16:33:39.000 |
| Other Links: | manifest | tags |
Context
|
2014-01-21
| ||
| 00:23 | Added man page check-in: b29ba09fb1 user: rkeene tags: trunk | |
|
2013-11-26
| ||
| 16:33 | Freecolor 0.8.10 check-in: 544e1dfdaf user: rkeene tags: trunk, 0.8.10 | |
| 16:33 | Removed extraneous include check-in: 14d026a41c user: rkeene tags: trunk | |
Changes
Modified freecolor.c
from [ccaaac738a]
to [62178048bb].
| ︙ | ︙ | |||
62 63 64 65 66 67 68 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.10"
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];
|
| ︙ | ︙ |