GP-0: Certify

This commit is contained in:
Ryan Kurtz 2025-03-20 13:27:23 -04:00
parent 2b7663d7e5
commit fa41bb3556
2 changed files with 7 additions and 7 deletions

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -38,10 +38,10 @@ import ghidra.xml.XmlParseException;
public class RustUtilities {
/**
* Checks if a given {@link MemoryBlock} contains a Rust signature
*
* This is used in the loader to determine if a program was compiled with rust.
* <p>
* This may be used by loaders to determine if a program was compiled with rust.
* If the program is determined to be rust, then the compiler property is set to
* {@Link RustConstants.RUST_COMPILER}.
* {@link RustConstants#RUST_COMPILER}.
*
* @param block The {@link MemoryBlock} to scan for Rust signatures
* @return True if the given {@link MemoryBlock} is not null and contains a Rust signature;