From 4bb95063a93353d45af7a64df925da0cbffb26c2 Mon Sep 17 00:00:00 2001 From: xethyrion Date: Thu, 10 Nov 2016 13:07:23 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1603052..4063617 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,10 @@ multiaddr for IPFS in C. # Usage: #### All you need to include is multiaddr.h ## Maddr struct: -char string[]; // String that contains addresses such as /ip4/192.168.1.1/ -uint8_t bytes; //String that contains the enecoded address -int bsize[]; //int[1] that contains the real bytes size (Use it whenever using the bytes so you don't input trash!) +* char string[]; // String that contains addresses such as /ip4/192.168.1.1/ +* uint8_t bytes; //String that contains the enecoded address +* int bsize[]; //int[1] that contains the real bytes size (Use it whenever using the bytes so you don't input trash!) + ## New Multi Address From String(new_maddr_fs) char addrstr[] = "/ip4/192.168.1.1/" struct maddr a;