diff --git a/all.sas b/all.sas index aff99c2..11de4a9 100644 --- a/all.sas +++ b/all.sas @@ -2177,6 +2177,7 @@ Usage: @details Creates a new version of a file either encoded or decoded using Base64. Inspired by this post by Michael Dixon: https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64 + Usage: filename tmp temp; @@ -2200,16 +2201,18 @@ Usage: put _infile_; run; - @param inref= Fileref of the input file (should exist) - @param outref= Output filref. If it does not exist, it is created. - @param action= (ENCODE) The action to take. Valid values: - @li ENCODE Convert the file to base64 format - @li DECODE Decode the file from base64 format + @param [in] inref= Fileref of the input file (should exist) + @param [out] outref= Output fileref. If it does not exist, it is created. + @param [in] action= (ENCODE) The action to take. Valid values: + @li ENCODE - Convert the file to base64 format + @li DECODE - Decode the file from base64 format + + @version 9.2 + @author Allan Bowe, source: https://github.com/sasjs/core

SAS Macros

@li mp_abort.sas - @version 9.2 **/ diff --git a/base/mp_base64copy.sas b/base/mp_base64copy.sas index ec81f58..9a949e5 100644 --- a/base/mp_base64copy.sas +++ b/base/mp_base64copy.sas @@ -4,6 +4,7 @@ @details Creates a new version of a file either encoded or decoded using Base64. Inspired by this post by Michael Dixon: https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64 + Usage: filename tmp temp; @@ -27,16 +28,18 @@ put _infile_; run; - @param inref= Fileref of the input file (should exist) - @param outref= Output filref. If it does not exist, it is created. - @param action= (ENCODE) The action to take. Valid values: - @li ENCODE Convert the file to base64 format - @li DECODE Decode the file from base64 format + @param [in] inref= Fileref of the input file (should exist) + @param [out] outref= Output fileref. If it does not exist, it is created. + @param [in] action= (ENCODE) The action to take. Valid values: + @li ENCODE - Convert the file to base64 format + @li DECODE - Decode the file from base64 format + + @version 9.2 + @author Allan Bowe, source: https://github.com/sasjs/core

SAS Macros

@li mp_abort.sas - @version 9.2 **/