dxx-rebirth/common/2d
Kp 073f00974a Eliminate uses of the typedef struct X { ... } X; pattern
C++ does not require this pattern.

import re, fileinput
to = re.compile(r'^typedef struct ([a-z_A-Z]+)\s*{')
tc = re.compile(r'^}(.*?)\s*([a-z_A-Z]+);$')
osn = None
for line in fileinput.input(inplace=True):
	m = to.match(line)
	if m:
		osn = m.group(1)
		print 'struct %s\n{' % osn
		continue
	if osn:
		m = tc.match(line)
		if m:
			csn = m.group(2)
			if osn == csn:
				print '}%s;' % m.group(1)
				osn = None
				continue
			else:
				osn = None
	print line,
2013-12-28 22:48:07 +00:00
..
2dsline.cpp
bitblt.cpp
bitmap.cpp Use array for palette_array_t 2013-12-22 00:37:36 +00:00
bitmap.h Add typedef palette_array_t for palette data 2013-12-22 00:05:13 +00:00
box.cpp Mark private functions static 2013-11-02 04:23:55 +00:00
canvas.cpp
circle.cpp
clip.h
disc.cpp
gpixel.cpp
line.cpp Mark private functions static 2013-11-02 04:23:55 +00:00
pixel.cpp
rect.cpp
rle.cpp Eliminate uses of the typedef struct X { ... } X; pattern 2013-12-28 22:48:07 +00:00
scalec.cpp Mark private functions static 2013-11-02 04:23:55 +00:00