Michael Kubacki 47d20b54f9 ShellPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737

Apply uncrustify changes to .c/.h files in the ShellPkg package

Cc: Andrew Fish <afish@apple.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
2021-12-07 17:24:28 +00:00

38 lines
763 B
C

/** @file
Declares generic editor helper functions.
Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef _LIB_MISC_H_
#define _LIB_MISC_H_
#include "TextEditorTypes.h"
/**
Free a EFI_EDITOR_LINE structure.
@param Src The line structure to free.
**/
VOID
LineFree (
IN EFI_EDITOR_LINE *Src
);
/**
Duplicate a EFI_EDITOR_LINE structure.
@param Src The line structure to copy from.
@retval NULL A memory allocation failed.
@return a pointer to the newly allcoated line.
**/
EFI_EDITOR_LINE *
LineDup (
IN EFI_EDITOR_LINE *Src
);
#endif