File: mkneticali.pl

package info (click to toggle)
thunderbird 1%3A52.9.1-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,709,148 kB
  • sloc: cpp: 5,081,792; ansic: 2,051,951; python: 458,733; java: 241,615; xml: 193,600; asm: 178,649; sh: 81,881; makefile: 24,702; perl: 16,874; objc: 4,389; yacc: 1,816; ada: 1,697; lex: 1,257; pascal: 1,251; cs: 879; exp: 499; php: 436; lisp: 258; awk: 152; sed: 51; ruby: 47; csh: 27
file content (99 lines) | stat: -rwxr-xr-x 1,981 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/local/bin/perl 

$pr = 1;
$ignore = 0;


print<<EOM;
/* -*- Mode: C -*-*/
/*======================================================================
  FILE: ical.i

  (C) COPYRIGHT 1999 Eric Busboom
  http://www.softwarestudio.org

  The contents of this file are subject to the Mozilla Public License
  Version 1.0 (the "License"); you may not use this file except in
  compliance with the License. You may obtain a copy of the License at
  http://www.mozilla.org/MPL/

  Software distributed under the License is distributed on an "AS IS"
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  the License for the specific language governing rights and
  limitations under the License.

  The original author is Eric Busboom

  Contributions from:
  Graham Davison (g.m.davison\@computer.org)

  ======================================================================*/  

%module Net__ICal

%{
#include "ical.h"

#include <sys/types.h> /* for size_t */
#include <time.h>

%}

EOM

foreach $f (@ARGV)
{
  @f = split(/\//,$f);
  $fn = pop(@f);

  $fn=~/pvl/ && next;
  $fn=~/sspm/ && next;
  $fn=~/cstp/ && next;
   $fn=~/csdb/ && next;
   $fn=~/vcal/ && next;
   $fn=~/yacc/ && next;
   $fn=~/lex/ && next;

  print "\n/**********************************************************************\n";

  print "\t$fn\n";
  print "**********************************************************************/\n\n";


  open F, $f;

  while(<F>){
    
    s/^#.*//;

    s/\/\*.*\*\///;
    
    /^\/\// && next;

    next if /^$/;
    
    if(/\/\*/){ $pr = 0;}
    
    /icalparser_parse\(/ and $ignore = 1;
    /vanew/ and $ignore = 1; 
    /_stub/ and $ignore = 1; 
    /_response/ and $ignore = 1; 
    /line_gen_func/ and $ignore = 1; 
    /extern/  and $ignore = 1; 
    /sspm/  and $ignore = 1; 
    /icalrecur/  and $ignore = 1; 

    if ($pr == 1 && $ignore == 0){
      print ;
    }
    
    
    if(/\*\//){ $pr = 1;}

    if (/\;/){ $ignore = 0; }

  }

}