From c38cdbf278d62fda8b2a763ed21e59f856596173 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 7 Dec 2016 11:34:50 -0600 Subject: [PATCH 1/3] Added building instructions --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 814eb20..d60db4c 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,11 @@ the standard C math functions and runtime binding of variables. - Easy to use and integrate with your code - Thread-safe, provided that your *malloc* is. +##Building + +TinyExpr is self-contained in two files: `tinyexpr.c` and `tinyexpr.h`. To use +TinyExpr, simply add those two files to your project. + ##Short Example Here is a minimal example to evaluate an expression at runtime. From 38851e2061e6f41ba10e2a0a087446ab7f79dd4d Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 7 Dec 2016 12:18:44 -0600 Subject: [PATCH 2/3] added logo to readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d60db4c..7998fbc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ [![Build Status](https://travis-ci.org/codeplea/tinyexpr.svg?branch=master)](https://travis-ci.org/codeplea/tinyexpr) -#TinyExpr + + +#TinyExpr TinyExpr is a very small recursive descent parser and evaluation engine for math expressions. It's handy when you want to add the ability to evaluation From a02d28211200ffe1089c92559f3dc2702cf3e520 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 7 Dec 2016 12:21:29 -0600 Subject: [PATCH 3/3] added logo alt text --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7998fbc..e05f8fc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Build Status](https://travis-ci.org/codeplea/tinyexpr.svg?branch=master)](https://travis-ci.org/codeplea/tinyexpr) - +TinyExpr logo #TinyExpr