MCPcopy Create free account
hub / github.com/barnybug/cli53 / equalCaseInsensitiveStringPtrs

Function equalCaseInsensitiveStringPtrs

commands.go:582–590  ·  view source on GitHub ↗
(a, b *string)

Source from the content-addressed store, hash-verified

580}
581
582func equalCaseInsensitiveStringPtrs(a, b *string) bool {
583 if a == nil && b == nil {
584 return true
585 } else if a != nil && b != nil {
586 return strings.EqualFold(*a, *b)
587 } else {
588 return false
589 }
590}
591
592func parseRecordList(args []string, zone *route53types.HostedZone) []dns.RR {
593 records := []dns.RR{}

Callers 1

createRecordsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected