home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / graph+ / part02 / attrnode.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-03-01  |  691 b   |  37 lines

  1. /*
  2.  * Copyright (C) 1986   Alan Kent
  3.  *
  4.  * Permission is granted to freely distribute part or
  5.  * all of this code as long as it is not for profit
  6.  * and this message is retained in the code.
  7.  *
  8.  * No resposibility is taken for any damage or incorect
  9.  * results this program generates.
  10.  * 
  11.  */
  12.  
  13.  
  14. #include <stdio.h>
  15. #include "graph.h"
  16.  
  17. extern char *new ();
  18.  
  19. /* create an attribute expression node */
  20.  
  21. attr_st *
  22. attr_node ( node_type , value , left , right )
  23. int node_type;
  24. double value;
  25. attr_st *left , *right;
  26. {
  27.     attr_st *p;
  28.  
  29.     p = (attr_st *) new ( sizeof ( attr_st ) );
  30.     p->node_type = node_type;
  31.     p->value = value;
  32.     p->left = left;
  33.     p->right = right;
  34.     return ( p );
  35. }
  36.  
  37.