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

FreeBSD Manual Pages

  
 
  

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

NAME
     write_rawresource - Write a line from the globally shared raw resource han-
     dle.

SYNOPSIS
     line
     write_rawresource()

NOTES
     1	    Each "line" is constrained to a maximum of 256 characters.

     2	    Leading and trailing whitespace is removed.

     3	    This  is not intended as a primary I/O mechanism, just as a fallback
	    for logging and code/configuration generation in a purposely limited
	    fashion. Furthermore, it is synchronously blocking.

EXAMPLE
     function write_rawresource0()
	   zap_resource("test.txt");
	   open_rawresource("test.txt");
	   write_rawresource("linea");
	   close_rawresource();
	   open_rawresource("test.txt");
	   local line = read_rawresource();
	   close_rawresource();
	   if (line == "linea") then
		 warning("resource test OK");
	   else
		 warning("resource test failed");
	   end
     end

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

resource			   August 2026		    write_rawresource(3)

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

home | help