about summary refs log tree commit diff homepage
path: root/www/code-examples/demo.c
diff options
context:
space:
mode:
Diffstat (limited to 'www/code-examples/demo.c')
-rw-r--r--www/code-examples/demo.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/code-examples/demo.c b/www/code-examples/demo.c
deleted file mode 100644
index 2bf1c00d..00000000
--- a/www/code-examples/demo.c
+++ /dev/null
@@ -1,11 +0,0 @@
-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);
-}