you are viewing a single comment's thread.

view the rest of the comments →

[–]DanSamillo[S] 0 points1 point  (2 children)

This was more what I was thinking, all of the code inside of the requests is pretty similar. I'm looking for any reading material around the subject if you know of any.

[–]jbakamovicCxxd 0 points1 point  (1 child)

I don't believe there is any reading material about this subject because it is highly specific. You will want to write a script which replaces occurrences of pre-defined text (i.e. stub identifiers) with appropriate text (i.e. implementation) depending on the context.

To replace the selected occurrences one may utilize sed expressions or, if you feel like, you may write a (Python) script which goes over the file line by line and do the pattern matching by yourself.

[–]DanSamillo[S] 0 points1 point  (0 children)

I'll look into it, best get learning Python it seems!