diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-05-28 04:44:50 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-05-28 04:44:50 +0000 |
commit | d5e3206198cb3c7489a2ba817dfdd4fe6587e143 (patch) | |
tree | 1a86bcf568e4a13b2fdf91bd70bcde48dc56f718 /www/code-examples/demo.c | |
parent | 14f53fcc478fe46e76240ce3ee920adda74ddcd5 (diff) | |
download | klee-d5e3206198cb3c7489a2ba817dfdd4fe6587e143.tar.gz |
Changes to webpage to make both tutorials use the same template.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/code-examples/demo.c')
-rw-r--r-- | www/code-examples/demo.c | 11 |
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); -} |