From 8f000fbc7297c475c495e863dc076909528ae748 Mon Sep 17 00:00:00 2001 From: Joseph Poirier Date: Tue, 16 Jun 2015 11:57:09 -0500 Subject: [PATCH] readme enhancements --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d4ad013..8f79862 100644 --- a/README.md +++ b/README.md @@ -433,17 +433,17 @@ PicoC also has scripting abilities which enhance it beyond what C90 offers. There is no true preprocessor in PicoC. The most popular preprocessor features are implemented in a slightly limited way. -## `#`define +## `#define` define macros are implemented but have some limitations. They can only be used as part of expressions and operate a bit like functions. Since they're used in expressions they must result in a value. -## `#`if/`#`ifdef/`#`else/`#`endif +## `#if/#ifdef/#else/#endif` The conditional compilation operators are implemented, but have some limitations. The operator "defined()" is not implemented. These operators can only be used at statement boundaries. -## `#`include +## `#include` include is supported however the level of support depends on the specific port of PicoC on your platform. Linux/UNIX and cygwin support #include fully.