From a9cc68eb02c9fb1cecda59f7693c5c9702b0aaa3 Mon Sep 17 00:00:00 2001 From: Sherman Perry <14854761+shermp@users.noreply.github.com> Date: Tue, 14 Aug 2018 11:51:27 +1200 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 002075b..72b25c7 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,7 @@ if (vhd_file_is_vhd(f)) err = vhd_check_validity(&vhdm); // check error status } -... -... +// do stuff /* Read 8 sectors from VHD, starting at sector 2048 */ uint8_t buff[4096]; // 8 * 512 vhd_read_sectors(&vhdm, f, 2048, 8, buff); @@ -80,4 +79,4 @@ vhd_create_file_sz(f, &vhdm, 2048, img_type); /* Close when done */ vhd_close(&vhdm); fclose(f); -``` \ No newline at end of file +```