home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / envsof20 / source / syntax / test_keyword.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-28  |  429 b   |  19 lines

  1. /* test_keyword.c -- Test functions in keyword.c
  2.  *
  3.  * Copyright 1999 Thomas Aglassinger and others, see file "forum.txt"
  4.  */
  5. #include "keyword.c"
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.    struct keyword_info *info = NULL;
  10.    create_keyword_list();
  11.  
  12.    info = keywords_of("golded:add-ons/eiffel/syntax/xxxxx.keyword");
  13.    info = keywords_of("golded:add-ons/eiffel/syntax/short.keyword");
  14.  
  15.    dispose_keyword_list();
  16.  
  17.    return 0;
  18. }
  19.