Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dynStrings (0.14 sec)

  1. src/debug/elf/file.go

    func (f *File) ImportedLibraries() ([]string, error) {
    	return f.DynString(DT_NEEDED)
    }
    
    // DynString returns the strings listed for the given tag in the file's dynamic
    // section.
    //
    // The tag must be one that takes string values: [DT_NEEDED], [DT_SONAME], [DT_RPATH], or
    // [DT_RUNPATH].
    func (f *File) DynString(tag DynTag) ([]string, error) {
    	switch tag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top