Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
332 views

Is there a tool to keep my C source files in order?

I have some C source files that are slowly expanding. I tend to keep the prototypes with documentation in the .h file in good order, grouped into relevant functions and types with #pragma mark. The ...
1
vote
2answers
66 views

Is there any language to specify automatic code modifications?

I'm doing some work where I need to be able to describe modifications to some program code that are to be done automatically. Is there any language that allows to describe this? The language should ...
1
vote
1answer
92 views

transforming Jython's source / ast

I've got a problem to solve in Jython. The function I've got looks like this: ok = whatever1(x, ...) self.assertTrue("whatever1 failed: "+x...(), ok) ok = whatever2(x, ...) ...
0
votes
1answer
45 views

Windows utility to find numbers and do operations?

Is there such a thing that finds numbers using regex and can perform simple arithmetic operations to it? Imagine you have a source/config file storing positions and later changed the code which ...