about summary refs log tree commit diff homepage
path: root/www/resources/islower.c.html
diff options
context:
space:
mode:
authorccadar <c.cadar@imperial.ac.uk>2013-07-26 03:54:29 -0700
committerccadar <c.cadar@imperial.ac.uk>2013-07-26 03:54:29 -0700
commit357ecb515baaa018a5b4b611f7cb4000e91315d3 (patch)
treeda6a64772f9440601c7b0efd816b06c40bdf90d8 /www/resources/islower.c.html
parent7d76de96751796cca076e021575fafd459eef6fb (diff)
parent032a2dedd1d3d033bcc410c3de07e6ed0f701ac0 (diff)
downloadklee-357ecb515baaa018a5b4b611f7cb4000e91315d3.tar.gz
Merge pull request #1 from ddcc/master
Remove website from master tree
Diffstat (limited to 'www/resources/islower.c.html')
-rw-r--r--www/resources/islower.c.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/www/resources/islower.c.html b/www/resources/islower.c.html
deleted file mode 100644
index 524f2093..00000000
--- a/www/resources/islower.c.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
-<HTML>
-<HEAD>
-<TITLE>Enscript Output</TITLE>
-</HEAD>
-<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#1F00FF" ALINK="#FF0000" VLINK="#9900DD">
-<A NAME="top">
-<A NAME="file1">
-<H1>islower.c</H1>
-
-<PRE>
-<I><FONT COLOR="#B22222">/*
- * First KLEE tutorial: testing a small function
- */</FONT></I>
-
-#<B><FONT COLOR="#5F9EA0">include</FONT></B> <B><FONT COLOR="#BC8F8F">&lt;klee/klee.h&gt;</FONT></B>
-
-<B><FONT COLOR="#228B22">int</FONT></B> <B><FONT COLOR="#0000FF">my_islower</FONT></B>(<B><FONT COLOR="#228B22">int</FONT></B> x) {
-  <B><FONT COLOR="#A020F0">if</FONT></B> (x &gt;= <B><FONT COLOR="#BC8F8F">'a'</FONT></B> &amp;&amp; x &lt;= <B><FONT COLOR="#BC8F8F">'z'</FONT></B>)
-    <B><FONT COLOR="#A020F0">return</FONT></B> 1;
-  <B><FONT COLOR="#A020F0">else</FONT></B> <B><FONT COLOR="#A020F0">return</FONT></B> 0;
-}
-
-<B><FONT COLOR="#228B22">int</FONT></B> <B><FONT COLOR="#0000FF">main</FONT></B>() {
-  <B><FONT COLOR="#228B22">char</FONT></B> c;
-  klee_make_symbolic(&amp;c, <B><FONT COLOR="#A020F0">sizeof</FONT></B>(c), <B><FONT COLOR="#BC8F8F">&quot;input&quot;</FONT></B>);
-  <B><FONT COLOR="#A020F0">return</FONT></B> my_islower(c);
-}
-</PRE>
-<HR>
-<ADDRESS>Generated by <A HREF="http://www.iki.fi/~mtr/genscript/">GNU enscript 1.6.4</A>.</ADDRESS>
-</BODY>
-</HTML>