Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
9abc5398
Kaydet (Commit)
9abc5398
authored
Mar 27, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Lint fluff
üst
559e55f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
regexpr.c
Modules/regexpr.c
+12
-1
acceler.c
Parser/acceler.c
+3
-4
No files found.
Modules/regexpr.c
Dosyayı görüntüle @
9abc5398
...
...
@@ -37,10 +37,16 @@ $Header$
#include <stdlib.h>
#include <string.h>
#else
#ifdef __STDC__
/* Don't mess around, use the standard headers */
#include <stdlib.h>
#include <string.h>
#else
char
*
malloc
();
void
free
();
char
*
realloc
();
#endif
#endif
/* __STDC__ */
#endif
/* THINK_C */
#define MACRO_BEGIN do {
#define MACRO_END } while (0)
...
...
@@ -508,6 +514,7 @@ regexp_t bufp;
goto
normal_char
;
opcode
=
Ceol
;
goto
store_opcode
;
/* NOTREACHED */
break
;
case
Roptional
:
if
(
beginning_context
)
...
...
@@ -1504,6 +1511,8 @@ regexp_registers_t regs;
startpos
,
range
,
regs
,
size
);
}
#ifdef UNUSED
static
struct
re_pattern_buffer
re_comp_buf
;
char
*
re_comp
(
s
)
...
...
@@ -1532,6 +1541,8 @@ char *s;
return
re_search
(
&
re_comp_buf
,
s
,
len
,
0
,
len
,
(
regexp_registers_t
)
NULL
)
>=
0
;
}
#endif
#ifdef TEST_REGEXP
int
main
()
...
...
Parser/acceler.c
Dosyayı görüntüle @
9abc5398
...
...
@@ -40,7 +40,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Forward references */
static
void
fixdfa
PROTO
((
grammar
*
,
dfa
*
));
static
void
fixstate
PROTO
((
grammar
*
,
dfa
*
,
state
*
));
static
void
fixstate
PROTO
((
grammar
*
,
state
*
));
void
addaccelerators
(
g
)
...
...
@@ -69,13 +69,12 @@ fixdfa(g, d)
int
j
;
s
=
d
->
d_state
;
for
(
j
=
0
;
j
<
d
->
d_nstates
;
j
++
,
s
++
)
fixstate
(
g
,
d
,
s
);
fixstate
(
g
,
s
);
}
static
void
fixstate
(
g
,
d
,
s
)
fixstate
(
g
,
s
)
grammar
*
g
;
dfa
*
d
;
state
*
s
;
{
arc
*
a
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment