Menu

AVR.Strings.C Log in to Edit

Package AVR.Strings.C

The package AVR.Strings.C defines functions that allow concatenation of AVR_Strings with normal Ada strings and to test equality with the same.

package AVR.Strings.C is

function "&"(L : String; R : AVR_String) return String;
function "&"(L : AVR_String; R : String) return String;

function "="(L : String; R : AVR_String) return Boolean;
function "="(L : AVR_String; R : String) return Boolean;

end AVR.Strings.C;

"&" Functions

The "&" functions allow the programmer to concatenate AVR_Strings with normal Ada strings, to return a normal Ada string.

function "&"(L : String; R : AVR_String) return String;
function "&"(L : AVR_String; R : String) return String;

== "=" Functions ==
The "=" functions permit the Ada programmer to compare an AVR_String with a normal Ada string for equality.

function "="(L : String; R : AVR_String) return Boolean;
function "="(L : AVR_String; R : String) return Boolean;

Related

Wiki: AVR.Strings

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.