Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
close_rawresource(3)		  Arcan Lua API 	    close_rawresource(3)

NAME
     close_rawresource - Close the context-global output file.

SYNOPSIS
     nil
     close_rawresource()

DESCRIPTION
     Raw  access  to  string- or raw-byte- output files is not encouraged in the
     scriptable Arcan interface, although some support functions are  added  for
     certain  edge-cases.  Calling  this  function closes a resource file opened
     through open_rawresource.

EXAMPLE
     function close_rawresource0()
	   open_rawresource("testres.txt");
	   close_rawresource();
     end

MISUSE
     function close_rawresource0()
	   close_rawresource();
     end

SEE ALSO:
     open_rawresource(3) write_rawresource(3) read_rawresource(3)

resource			   August 2026		    close_rawresource(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=close_rawresource&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help