File:  [local] / rpl / modules / sets / sets.rplc
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Mon Jul 3 12:15:30 2017 UTC (6 years, 11 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Ajout de la fonction COMPLEMENT à la bibliothèque SETS.

    1: // Attention, la définition de __RPLC_MAIN n'est obligatoire que parce qu'on
    2: // ne compile pas les bibliothèques avec mkrplso puisque à ce moment,
    3: // l'environnement RPL/2 n'est pas encore installé.
    4: 
    5: #define __RPLC_MAIN
    6: #include "src/rplexternals.h"
    7: #include "sets.h"
    8: 
    9: libraryName(sets);
   10: 
   11: declareSubroutine(onLoading)
   12:     notice(stdout, "\nSets library V1R1 for RPL/2(C) 2017 BERTRAND Joel\n");
   13:     notice(stdout, "Sets library loaded.\n\n");
   14: endSubroutine
   15: 
   16: declareSubroutine(onClosing)
   17:     notice(stdout, "Sets library unloaded.\n\n");
   18: endSubroutine
   19: 
   20: exportExternalFunctions(
   21:         complement,
   22:         intersection,
   23:         union);
   24: 
   25: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>