l_size.c
上传用户:aidanglao
上传日期:2007-01-07
资源大小:69k
文件大小:0k
源码类别:

Oracle数据库

开发平台:

Unix_Linux

  1. /**********************************************************************
  2. /* Copyright (C) 1990 - 1999 Steve A. Olson
  3. /*  11617 Quarterfield Dr
  4. /* Ellicott City, MD, 21042
  5. /* All rights reserved.
  6. /**********************************************************************
  7. /* */ 
  8. /* 
  9. /* L_SIZE.C -- Return number of Elements in the LIST.
  10. /*
  11. /* */ 
  12. #include "list.h"
  13. int
  14. l_size(LIST *ll)
  15. {
  16. if(ll) return(ll->size);
  17. return(0);
  18. }