about summary refs log tree commit diff homepage
path: root/examples
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2018-09-14 19:08:39 +0100
committerMartinNowack <martin.nowack@gmail.com>2018-09-20 22:39:24 +0100
commit4efd7f6b443f187f5a844227339383ce5593e865 (patch)
tree1d67ce3ecbc575e88a8e317b0f694da239fe79a8 /examples
parent9ddcb08d0369442b84b14a9a95da0c2efc76df20 (diff)
downloadklee-4efd7f6b443f187f5a844227339383ce5593e865.tar.gz
Removed unused file
Diffstat (limited to 'examples')
-rw-r--r--examples/islower/islower.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/islower/islower.c b/examples/islower/islower.c
deleted file mode 100644
index ab85d072..00000000
--- a/examples/islower/islower.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * First KLEE tutorial: testing a small function
- */
-
-#include <klee/klee.h>
-
-int my_islower(int x) {
-  if (x >= 'a' && x <= 'z')
-    return 1;
-  else return 0;
-}
-
-int main() {
-  char c;
-  klee_make_symbolic(&c, sizeof(c), "input");
-  return my_islower(c);
-}