Ignore:
Timestamp:
Jun 8, 2008, 6:32:32 PM (16 years ago)
Author:
gah
Message:

added missing Makefiles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/c-example/plotc.c

    r555 r1019  
    1313#include <math.h>
    1414
    15 int main(int argc, char * argv[])
     15#ifdef DEBUG
     16static int debug = 1;
     17#else
     18static int debug = 0;
     19#endif
     20
     21int
     22main(int argc, char **argv)
    1623{
    1724
     
    3744    filePath = argv[1];
    3845
    39     if (DEBUG)
     46    if (debug)
    4047        printf("filePath: %s:\n", filePath);
    4148
     
    4451
    4552    if (lib) {
    46         if(DEBUG) {
     53        if(debug) {
    4754            printf("created Rappture Library successfully\n");
    4855        }
     
    5764    err = rpXml(lib,&xmltext);
    5865    if( !err ) {
    59         if(DEBUG) {
     66        if(debug) {
    6067        //printf("XML file content:\n");
    6168        //printf("%s\n", xmltext);
     
    7986    // it will live in rappture's memory until the next call to getString()
    8087
    81     if(DEBUG) {
    82         printf("xml min: %s: len=%d\n", xmltext, strlen(xmltext));
     88    if(debug) {
     89      printf("xml min: %s: len=%d\n", xmltext, (int)strlen(xmltext));
    8390    }
    8491
    8592    fmin = atof(xmltext);
    8693    // fmin = getDouble(lib,"input.number(min).current");
    87     if(DEBUG) {
     94    if(debug) {
    8895        printf("min: %f\n", fmin);
    8996    }
     
    9198    // get the max
    9299    rpGetDouble(lib,"input.(max).current",&fmax);
    93     if(DEBUG) {
     100    if(debug) {
    94101        printf("max: %f\n", fmax);
    95102    }
Note: See TracChangeset for help on using the changeset viewer.