home *** CD-ROM | disk | FTP | other *** search
/ ftp.sunet.sepub/pictures / 2014.11.ftp.sunet.se-pictures.tar / ftp.sunet.se / pub / pictures / ACiD-artpacks / programs / unix / editors / gimp-plugins-unstable-0_99_23_tar.gz / gimp-plugins-unstable-0_99_23_tar / gimp-plugins-unstable-0.99.23 / mathmap / vars.h < prev   
C/C++ Source or Header  |  1998-02-19  |  272b  |  19 lines

  1. #ifndef __VARS_H__
  2. #define __VARS_H__
  3.  
  4. #define VAR_MAX_LENGTH     32
  5.  
  6. typedef struct _variable
  7. {
  8.     char name[VAR_MAX_LENGTH];
  9.     double value;
  10.  
  11.     struct _variable *next;
  12. } variable;
  13.  
  14. variable* register_variable (char *name);
  15.  
  16. void clear_all_variables (void);
  17.  
  18. #endif
  19.