PageRenderTime 47ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/vm/while.h

https://github.com/drudru/cel
C Header | 24 lines | 4 code | 9 blank | 11 comment | 0 complexity | 5bed1b8680fa3b4c583a2da2726e512b MD5 | raw file
  1. //
  2. // while.h
  3. //
  4. // This has the ugly assembly code to implement the while loop in this
  5. // language. This is the only place where these will be used
  6. //
  7. //
  8. // $Id: while.h,v 1.2 2001/01/05 00:58:54 dru Exp $
  9. //
  10. //
  11. //
  12. #ifndef _CEL_WHILE_H
  13. #define _CEL_WHILE_H 1
  14. Proto whileObj(int isTrueLoop);
  15. #endif