X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fada%2Fterminal_interface-curses-trace__adb.htm;h=a5952109fafb7bc1225ade2cd3ddefdeaa455d1d;hp=f3b0834359d8c9b91396986275233b0b6e0238fe;hb=a90dd7b66fa711acd24d8181ea20e4f57d4b36cd;hpb=db5f7f4f146a91ba8ec7f1df8e9d7f9d2d7c74fd diff --git a/doc/html/ada/terminal_interface-curses-trace__adb.htm b/doc/html/ada/terminal_interface-curses-trace__adb.htm index f3b08343..a5952109 100644 --- a/doc/html/ada/terminal_interface-curses-trace__adb.htm +++ b/doc/html/ada/terminal_interface-curses-trace__adb.htm @@ -24,7 +24,8 @@ -- B O D Y -- -- -- ------------------------------------------------------------------------------ --- Copyright (c) 2000-2009,2014 Free Software Foundation, Inc. -- +-- Copyright 2020 Thomas E. Dickey -- +-- Copyright 2001-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- @@ -52,27 +53,27 @@ ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: --- @Revision: 1.11 @ +-- @Revision: 1.12 @ -- Binding Version 01.00 ------------------------------------------------------------------------------ -with Interfaces.C; use Interfaces.C; +with Interfaces.C; use Interfaces.C; -package body Terminal_Interface.Curses.Trace is +package body Terminal_Interface.Curses.Trace is - procedure Trace_On (x : Trace_Attribute_Set) is - procedure traceC (y : Trace_Attribute_Set); + procedure Trace_On (x : Trace_Attribute_Set) is + procedure traceC (y : Trace_Attribute_Set); pragma Import (C, traceC, "trace"); begin - traceC (x); - end Trace_On; + traceC (x); + end Trace_On; - procedure Trace_Put (str : String) is - procedure tracef (format : char_array; s : char_array); + procedure Trace_Put (str : String) is + procedure tracef (format : char_array; s : char_array); pragma Import (C, tracef, "_traces"); -- _traces() is defined in c_varargs_to_ada.h begin - tracef (To_C ("%s"), To_C (str)); - end Trace_Put; + tracef (To_C ("%s"), To_C (str)); + end Trace_Put; -end Terminal_Interface.Curses.Trace; +end Terminal_Interface.Curses.Trace;