convert_to_Base64_single Interface

public interface convert_to_Base64_single

Module Procedures

public subroutine real32_to_base64_single(indata, outfile)

this routine encodes a single variable of type real32 into base64 format

Arguments

Type IntentOptional Attributes Name
real(kind=c_float), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine real64_to_base64_single(indata, outfile)

this routine encodes a single variable of type real64 into base64 format

Arguments

Type IntentOptional Attributes Name
real(kind=c_double), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine char_to_base64_single(indata, outfile)

this routine encodes a single variable of type char into base64 format

Arguments

Type IntentOptional Attributes Name
character(kind=c_char, len=1), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int8_to_base64_single(indata, outfile)

this routine encodes a single variable of type int8 into base64 format

Arguments

Type IntentOptional Attributes Name
integer(kind=c_int_least8_t), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int32_to_base64_single(indata, outfile)

this routine encodes a single variable of type int32 into base64 format

Arguments

Type IntentOptional Attributes Name
integer(kind=c_int), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int64_to_base64_single(indata, outfile)

this routine encodes a single variable of type int64 into base64 format

Arguments

Type IntentOptional Attributes Name
integer(kind=c_int_least64_t), intent(in), target :: indata

data to be encoded

integer, intent(in) :: outfile

output file unit