/[pspp]/pspp/src/case.h
ViewVC logotype

Diff of /pspp/src/case.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by blp, Sun Aug 21 07:21:06 2005 UTC revision 1.9 by blp, Tue Oct 25 04:28:17 2005 UTC
# Line 73  CASE_INLINE void case_from_values (struc Line 73  CASE_INLINE void case_from_values (struc
73    
74  CASE_INLINE const union value *case_data (const struct ccase *, size_t idx);  CASE_INLINE const union value *case_data (const struct ccase *, size_t idx);
75  CASE_INLINE double case_num (const struct ccase *, size_t idx);  CASE_INLINE double case_num (const struct ccase *, size_t idx);
76  CASE_INLINE const unsigned char *case_str (const struct ccase *, size_t idx);  CASE_INLINE const char *case_str (const struct ccase *, size_t idx);
77    
78  CASE_INLINE union value *case_data_rw (struct ccase *, size_t idx);  CASE_INLINE union value *case_data_rw (struct ccase *, size_t idx);
79    
# Line 170  case_num (const struct ccase *c, size_t Line 170  case_num (const struct ccase *c, size_t
170    return c->case_data->values[idx].f;    return c->case_data->values[idx].f;
171  }  }
172    
173  static inline const unsigned char *  static inline const char *
174  case_str (const struct ccase *c, size_t idx)  case_str (const struct ccase *c, size_t idx)
175  {  {
176    return c->case_data->values[idx].s;    return c->case_data->values[idx].s;

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26