]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/BufferImage.c
ShellPkg: Clean up source files
[mirror_edk2.git] / ShellPkg / Library / UefiShellDebug1CommandsLib / HexEdit / BufferImage.c
index 1048ecd41593a7d256ed187f88fbbaffd3493eb3..9b0af6d92402b209a0a1ec7540159a9d87c8b406 100644 (file)
@@ -1,8 +1,8 @@
 /** @file\r
   Defines HBufferImage - the view of the file that is visible at any point,\r
   as well as the event handlers for editing the file\r
-  \r
-  Copyright (c) 2005 - 2017, Intel Corporation. All rights reserved. <BR>\r
+\r
+  Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -138,7 +138,7 @@ HBufferImageInit (
 }\r
 \r
 /**\r
-  Backup function for HBufferImage. Only a few fields need to be backup. \r
+  Backup function for HBufferImage. Only a few fields need to be backup.\r
   This is for making the file buffer refresh as few as possible.\r
 \r
   @retval EFI_SUCCESS  The operation was successful.\r
@@ -190,7 +190,7 @@ HBufferImageBackup (
     Lines\r
     CurrentLine\r
     NumLines\r
-    ListHead \r
+    ListHead\r
 \r
   @retval EFI_SUCCESS  The operation was successful.\r
 **/\r
@@ -946,7 +946,7 @@ HBufferImageRead (
   case FileTypeMemBuffer:\r
     Status = HMemImageRead (MemOffset, MemSize, Recover);\r
     break;\r
-    \r
+\r
   default:\r
     Status = EFI_NOT_FOUND;\r
     break;\r
@@ -1013,7 +1013,7 @@ HBufferImageSave (
   case FileTypeMemBuffer:\r
     Status = HMemImageSave (MemOffset, MemSize);\r
     break;\r
-    \r
+\r
   default:\r
     Status = EFI_NOT_FOUND;\r
     break;\r
@@ -1030,7 +1030,7 @@ HBufferImageSave (
   Create a new line and append it to the line list.\r
     Fields affected:\r
     NumLines\r
-    Lines \r
+    Lines\r
 \r
   @retval NULL    create line failed.\r
   @return         the line created.\r
@@ -1368,7 +1368,7 @@ HBufferImageDoCharInput (
   Check user specified FileRow is above current screen.\r
 \r
   @param[in] FileRow  Row of file position ( start from 1 ).\r
-  \r
+\r
   @retval TRUE   It is above the current screen.\r
   @retval FALSE  It is not above the current screen.\r
 \r
@@ -1880,12 +1880,12 @@ HBufferImageGetTotalSize (
 \r
 /**\r
   Delete character from buffer.\r
-  \r
+\r
   @param[in] Pos      Position, Pos starting from 0.\r
   @param[in] Count    The Count of characters to delete.\r
   @param[out] DeleteBuffer    The DeleteBuffer.\r
 \r
-  @retval EFI_SUCCESS Success \r
+  @retval EFI_SUCCESS Success\r
 **/\r
 EFI_STATUS\r
 HBufferImageDeleteCharacterFromBuffer (\r
@@ -2014,7 +2014,7 @@ HBufferImageDeleteCharacterFromBuffer (
   @param[in] Count      Count of characters to add.\r
   @param[in] AddBuffer  Add buffer.\r
 \r
-  @retval EFI_SUCCESS   Success.  \r
+  @retval EFI_SUCCESS   Success.\r
 **/\r
 EFI_STATUS\r
 HBufferImageAddCharacterToBuffer (\r
@@ -2166,7 +2166,7 @@ HBufferImageDoDelete (
 \r
 /**\r
   Change the raw buffer to a list of lines for the UI.\r
-  \r
+\r
   @param[in] Buffer   The pointer to the buffer to fill.\r
   @param[in] Bytes    The size of the buffer in bytes.\r
 \r
@@ -2231,7 +2231,7 @@ HBufferImageBufferToList (
 \r
 /**\r
   Change the list of lines from the UI to a raw buffer.\r
-  \r
+\r
   @param[in] Buffer   The pointer to the buffer to fill.\r
   @param[in] Bytes    The size of the buffer in bytes.\r
 \r