User Remo.D - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:17:19Zhttp://stackoverflow.com/feeds/user/16827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2540/good-stl-like-library-for-c/1774989#17749890Answer by Remo.D for Good STL-like library for C.Remo.D2009-11-21T09:07:48Z2009-11-21T09:07:48Z<p>If hash tables, extensible strings and dynamic vector are enough for your needs, please have a look at the library I put toghether: <a href="http://code.google.com/p/c-libutl/" rel="nofollow">http://code.google.com/p/c-libutl/</a>.</p>
<p>I also would welcome any feedback!</p>
http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772333#17723337Answer by Remo.D for C - the most useful user-made C-macros (in GCC, also C99) ?Remo.D2009-11-20T18:14:50Z2009-11-21T06:57:09Z<p>The key point with C macros is to use them properly. In my mind there are three categories (not considering using them just to give descriptive names to constants)</p>
<ol>
<li>As a shorthand for piece of codes one doesn't want to repeat</li>
<li>Provide a general use function</li>
<li>Modify the structure of the C language (apparently)</li>
</ol>
<p>In the first case, your macro will live just within your program (usually just a file) so you can use macros like the one you have posted that is not protected against double evaluation of parameters and uses <code>{...};</code> (potentially dangerous!).</p>
<p>In the second case (and even more in the third) you need to be <strong>extremely</strong> careful that your macros behave correctly as if they were real C constructs.</p>
<p>The macro you posted from GCC (min and max) is an example of this, they use the global variables <code>_a</code> and <code>_b</code> to avoid the risk of double evaluation (like in <code>max(x++,y++)</code>) (well, they use GCC extensions but the concept is the same).</p>
<p>I like using macros where it helps to make things more clear but they are a sharp tool! Probably that's what gave them such a bad reputation, I think they are a very useful tool and C would have been much poorer if they were not present.</p>
<p>I see others have provided examples of point 2 (macros as functions), let me give an example of creating a new C construct: the Finite state machine. (I've already posted this on SO but I can't seem to be able to find it)</p>
<pre><code> #define FSM for(;;)
#define STATE(x) x##_s
#define NEXTSTATE(x) goto x##_s
</code></pre>
<p>that you use this way:</p>
<pre><code> FSM {
STATE(s1):
... do stuff ...
NEXTSTATE(s2);
STATE(s2):
... do stuff ...
if (k<0) NEXTSTATE(s2);
/* fallthrough as the switch() cases */
STATE(s3):
... final stuff ...
break; /* Exit from the FSM */
}
</code></pre>
<p>You can add variation on this theme to get the flavour of FSM you need.</p>
<p>Someone may not like this example but I find it perfect to demonstrate how simple macros can make your code more legible and expressive.</p>
http://stackoverflow.com/questions/1773856/well-working-and-comprehensive-adt-for-c/1773861#17738615Answer by Remo.D for Well working and comprehensive ADT for CRemo.D2009-11-20T23:27:28Z2009-11-21T06:46:28Z<p>Glib is a pretty reliable and powerful library: <a href="http://library.gnome.org/devel/glib/2.22/" rel="nofollow">http://library.gnome.org/devel/glib/2.22</a></p>
<p>It has tables, Linked lists etc, etc. I found it a little bit intimidating but it's just a matter of personal preference.</p>
http://stackoverflow.com/questions/1773079/segmentation-fault-with-char-array-and-pointer-in-c-on-linux/1773116#17731161Answer by Remo.D for Segmentation Fault With Char Array and Pointer in C on LinuxRemo.D2009-11-20T20:40:46Z2009-11-20T21:51:13Z<p>The "another" you see in the rodata section is what will be copied in the array <code>two</code> when it will be initialized. On the other hand the <em>address</em> of the string "computer" will be assigned to one.</p>
<p>So, <code>one</code> is pointing to a read only segment (and hence the segfault on write) while <code>two</code> will be allocated on the stack and then "another" will be copied into it. </p>
http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gcc/1772160#17721601Answer by Remo.D for Disabling NUL-termination of strings in GCCRemo.D2009-11-20T17:46:35Z2009-11-20T17:46:35Z<p>I understand you're only dealing with strings declared in your program:</p>
<pre><code> ....
char str1[10];
char str2[12];
....
</code></pre>
<p>and not with text buffers you allocate with <code>malloc()</code> and friends otherwise <code>sizeof</code> is not going to help you.</p>
<p>Anyway, i would just think twice about removing the \0 at the end: you would lose the compatibility with C standard library functions.</p>
<p>Unless you are going to rewrite any single string function for your library (sprintf, for example), are you sure you want to do it?</p>
http://stackoverflow.com/questions/1771659/format-a-string-in-c/1771676#17716765Answer by Remo.D for Format a string in CRemo.D2009-11-20T16:33:24Z2009-11-20T17:29:55Z<p>Since this is homework (thanks for tagging it as such) I'll suggest you to look closely at the <code>...printf()</code> family of functions.</p>
<p>I'm sure you'll find the solution :)</p>
http://stackoverflow.com/questions/1770604/making-a-perfect-hash-all-consecutive-buckets-full-gperf-or-alternatives/1770796#17707960Answer by Remo.D for Making a perfect hash (all consecutive buckets full), gperf or alternatives?Remo.D2009-11-20T14:31:07Z2009-11-20T14:36:31Z<p>The only alternative to gperf I know is cmph : <a href="http://cmph.sourceforge.net/" rel="nofollow">http://cmph.sourceforge.net/</a> but, as Jerome said in the comment, having 16 buckets provides you some speed benefit.</p>
<p>When I first looked at minimal perfect hasihing I found very interesting readings on <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.91.6283" rel="nofollow">CiteseerX</a> but I resisted the temptation to try coding one of those solutions myself. I know I would end up with an inferior solution respect to gperf or cmph or, even assuming the solution was comparable, I would have to spend a lot of time on it.</p>
http://stackoverflow.com/questions/1762148/atomic-instruction/1762210#17622101Answer by Remo.D for Atomic InstructionRemo.D2009-11-19T10:06:52Z2009-11-19T10:13:35Z<p>Atomicity is a key concept when you have any form of parallel processing (including different applications cooperating or sharing data) that includes shared resources.</p>
<p>The problem is well illustrated with an example. Let's say you have two programs that want to create a file but only if the file doesn't already exists. Any of the two program can create the file at any point in time.</p>
<p>If you do (I'll use C since it's what's in your example):</p>
<pre><code> ...
f = fopen ("SYNCFILE","r");
if (f == NULL) {
f = fopen ("SYNCFILE","w");
}
...
</code></pre>
<p>you can't be sure that the other program hasn't created the file between your open for read and your open for write.</p>
<p>There's no way you can do this on your own, you need help from the operating system, that usually provide syncronization primitives for this purpose, or another mechanism that is guaranteed to be atomic (for example a relational database where the lock operation is atomic, or a lower level mechanism like processors "test and set" instructions).</p>
http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode/1762139#17621393Answer by Remo.D for Common reasons for bugs in release version not present in debug modeRemo.D2009-11-19T09:54:00Z2009-11-19T09:54:00Z<p>It can, especially if you are in the C realm.</p>
<p>One cause could be that the DEBUG version may add code to check for stray pointers and somehow protect your code from crashing (or behave incorrectly). If this is the case you should carefully check warnings and other messages you get from your compiler.</p>
<p>Another cause could be optimization (which is normally on for release versions and off for debug). The code and data layout may have been optimized and while your debugging program just was, for example, accessing unused memory, the release version is now trying to access reserved memory or even pointing to code!</p>
<p>EDIT: I see other mentioned it: of course you might have entire code sections that are conditionally excluded if not compiling in DEBUG mode. If that's the case, I hope that is really debugging code and not something vital for the correctness of the program itself!</p>
http://stackoverflow.com/questions/1761794/detect-main-has-started/1761911#17619112Answer by Remo.D for Detect main has started? Remo.D2009-11-19T09:10:47Z2009-11-19T09:22:14Z<p>I don't get what problem are you trying to solve.</p>
<p>When you build your application, the linker adds the startup code that is the first code to be executed when the OS loads your program in memory. This code will do all the initialization stuff and, when finished, will call your main() function.</p>
<p>If you are talking about replacing this code with your own, you should check the inner details of your compiler/linker (and be very sure you know what are you doing!!).</p>
<p>If your question is about having multiple processes and you need to know if one of the process has started, you should use a proper syncronization mechanism (that can be one of those provided by the underlying OS or one you make your own).</p>
http://stackoverflow.com/questions/1706551/parse-string-into-argv-argc/1706733#17067333Answer by Remo.D for Parse string into argv/argcRemo.D2009-11-10T09:46:37Z2009-11-19T08:43:48Z<p>If glib solution is overkill for your case you may consider coding one yourself.</p>
<p>Then you can:</p>
<ul>
<li>scan the string and count how many arguments there are (and you get your argc)</li>
<li>allocate an array of char * (for your argv)</li>
<li>rescan the string, assign the pointers in the allocated array and replace spaces with '\0' (if you can't modify the string containing the arguments, you should duplicate it).</li>
<li>don't forget to free what you have allocated!</li>
</ul>
<p>The diagram below should clarify (hopefully):</p>
<pre><code> aa bbb ccc "dd d" ee <- original string
aa0bbb0ccc00dd d00ee0 <- transformed string
| | | | |
argv[0] __/ / / / /
argv[1] ____/ / / /
argv[2] _______/ / /
argv[3] ___________/ /
argv[4] ________________/
</code></pre>
<p>A possible API could be:</p>
<pre><code> char **parseargs(char *arguments, int *argc);
void freeparsedargs(char **argv);
</code></pre>
<p>You will need additional considerations to implement freeparsedargs() safely.</p>
<p>If your string is very long and you don't want to scan twice you may consider alteranatives like allocating more elements for the argv arrays (and reallocating if needed).</p>
<p>EDIT: Proposed solution (desn't handle quoted argument).</p>
<pre><code> #include <stdio.h>
static int setargs(char *args, char **argv)
{
int count = 0;
while (isspace(*args)) ++args;
while (*args) {
if (argv) argv[count] = args;
while (*args && !isspace(*args)) ++args;
if (argv && *args) *args++ = '\0';
while (isspace(*args)) ++args;
count++;
}
return count;
}
char **parsedargs(char *args, int *argc)
{
char **argv = NULL;
int argn = 0;
if (args && *args
&& (args = strdup(args))
&& (argn = setargs(args,NULL))
&& (argv = malloc((argn+1) * sizeof(char *)))) {
*argv++ = args;
argn = setargs(args,argv);
}
if (args && !argv) free(args);
*argc = argn;
return argv;
}
void freeparsedargs(char **argv)
{
if (argv) {
free(argv[-1]);
free(argv-1);
}
}
int main(int argc, char *argv[])
{
int i;
char **av;
int ac;
char *as = NULL;
if (argc > 1) as = argv[1];
av = parsedargs(as,&ac);
printf("== %d\n",ac);
for (i = 0; i < ac; i++)
printf("[%s]\n",av[i]);
freeparsedargs(av);
exit(0);
}
</code></pre>
http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758961#17589617Answer by Remo.D for How do I have a variable in C that can accept various types?Remo.D2009-11-18T20:47:20Z2009-11-18T21:28:27Z<p>The way to define a variable that can hold values of more than one type is to use unions:</p>
<pre><code>union uu {
int i;
float f;
char c;
char *s;
} x;
</code></pre>
<p>x.i is an integer, x.s a char pointer etc. and the size of x is the maximum among the sizes of the members type.</p>
<p>Unfortunately the only way to remember the type of the variable is to store it somewhere else. A common solution is to have a structure like this:</p>
<pre><code> struct ss {
int type;
union {
int i;
float f;
char c;
char *s;
} val;
} x;
</code></pre>
<p>And do something like:</p>
<pre><code> #define FLOAT 1
#define INT 2
....
x.val.i = 12;
x.type = INT;
....
if (x.type = INT) printf("%d\n",x.val.i);
....
</code></pre>
<p>really ugly.</p>
<p>There are other possibility playing with the macro processor to make it a little bit more pleasent to the eye but the essence is that you have to know <strong>in advance</strong> the type of the value stored in the union and access the proper field.</p>
http://stackoverflow.com/questions/1753931/help-needed-in-writing-a-gui-app-in-c/1754489#17544891Answer by Remo.D for Help needed in writing a GUI app in C Remo.D2009-11-18T08:38:38Z2009-11-18T09:34:28Z<p>For plain C, cross platform, native look, simple, scriptable UI, I suggest to have a look at IUP: <a href="http://www.tecgraf.puc-rio.br/iup/" rel="nofollow">http://www.tecgraf.puc-rio.br/iup/</a></p>
http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation/1748669#17486692Answer by Remo.D for Character decoding Conversion Function ImplementationRemo.D2009-11-17T12:54:00Z2009-11-17T16:20:49Z<p>An hashtable would surely be the fastest solution.</p>
<p>If a table is known upfront and never changes (as I understand it's the case), you can determine a <a href="http://en.wikipedia.org/wiki/Perfect%5Fhash%5Ffunction" rel="nofollow">perfect hash</a> for it meaning that you will have no collision and assured costant retrieve time (at the expense of possibily some space).</p>
<p>I've used <a href="http://www.gnu.org/software/gperf/" rel="nofollow">gperf</a> a couple of times but I suggest you to check <a href="http://burtleburtle.net/bob/hash/" rel="nofollow">Bob Jenkins</a> great page on hashing (and <a href="http://burtleburtle.net/bob/hash/perfect.html" rel="nofollow">minimal perfect hashing</a> as well)</p>
http://stackoverflow.com/questions/1748586/i-dont-get-how-a-program-can-update-itself-how-can-i-make-my-software-update/1748625#17486252Answer by Remo.D for I don't "get" how a program can update itself. How can I make my software update?Remo.D2009-11-17T12:44:43Z2009-11-17T13:02:36Z<p>Usually the process is as follows:</p>
<ul>
<li>the user starts the applicataion</li>
<li>the application launches an "updater" (another program)</li>
<li>the updater retrieves from the Internet if a newer version exists</li>
<li>if that's the case, propose the user to update</li>
<li>the users accepts, the updater downlads the new install package (that can be incremental)</li>
<li>the updater shuts the application down (or better, asks the user to do it) and launches the new installer.</li>
<li>the installation package do the rest</li>
</ul>
<p>Of course you can have many variation, but this is the basic way to do it.</p>
<p>On Windows, at least, some software install an updater deamon that is always on and checks for new updates of the software it takes care (GoogleUpdater, for example).</p>
http://stackoverflow.com/questions/1741191/creating-a-file-stream-that-results-in-a-string/1741434#17414340Answer by Remo.D for Creating a FILE * stream that results in a stringRemo.D2009-11-16T10:52:49Z2009-11-16T11:25:30Z<p>I'm not sure I understand why you want to mess up with FILE *. Couldn't you simply write to a file and then load it in string?</p>
<pre><code> char *get_file_in_buf(char *filename) {
char *buffer;
... get file size with fseek or fstat ...
... allocate buffer ...
... read buffer from file ...
return buffer;
}
</code></pre>
<p>If you only want to "write" formatted text into a string, another option could be to handle an extensible buffer using <code>snprintf()</code> (see the answers to this SO question for a suggestion on how to handle this: <a href="http://stackoverflow.com/questions/1706587/resuming-vfnprintf-after-reaching-the-limit">http://stackoverflow.com/questions/1706587/resuming-vfnprintf-after-reaching-the-limit</a>).</p>
<p>If, instead, you want to create a type that can be passed transparently to any function taking a <code>FILE *</code> to make them act on string buffers, it's a much more complex matter ...</p>
http://stackoverflow.com/questions/1740262/c-macro-processing/1741350#17413501Answer by Remo.D for C macro processingRemo.D2009-11-16T10:38:22Z2009-11-16T10:38:22Z<p>Macro processors are very interesting but can became a difficult beast to tame (think about recursive expansions, for example).</p>
<p>You can look at the implementation of already existing macro processors like M4 (<a href="http://www.scs.stanford.edu/~reddy/links/gnu/m4.pdf" rel="nofollow">http://www.scs.stanford.edu/~reddy/links/gnu/m4.pdf</a>).</p>
<p>In very general terms you will need:</p>
<ul>
<li>a parser that will first extract the macro definitions from your files (deleting them from the file, of course) </li>
<li>another parser that identify where macros need to be expanded and performs the expansion (e.g. you will want to skip strings and comments!)</li>
</ul>
<p>I think it's a very interesting exercise. The proper data structure to handle all this is not trivial.</p>
http://stackoverflow.com/questions/1739032/generate-assembler-code-from-c-file-in-linux/1739049#17390494Answer by Remo.D for Generate assembler code from C file in linuxRemo.D2009-11-15T22:14:10Z2009-11-15T22:14:10Z<p>If you're using gcc (as it seems) it's gcc -S.</p>
<p>Don't forget to specify the include paths with -I if needed.</p>
<pre><code>gcc -I ../my_includes -S my_file.c
</code></pre>
<p>and you'll get my_file.s with the Assembler instructions.</p>
http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737724#17377246Answer by Remo.D for C structs don't define types?Remo.D2009-11-15T14:53:49Z2009-11-15T14:53:49Z<p>No, a struct do not define a new type. What you need is:</p>
<pre><code>typedef struct {
int x; int y;
} Point;
</code></pre>
<p>Now Point is new type you can use:</p>
<pre><code>Point p;
p.x = 0; p.y = 0;
</code></pre>
http://stackoverflow.com/questions/1734711/relational-databases-and-mathematics/1734723#17347235Answer by Remo.D for Relational Databases and Mathematics?Remo.D2009-11-14T16:27:39Z2009-11-14T16:27:39Z<p>I would suggest starting from the Wikipedia page: <a href="http://en.wikipedia.org/wiki/Relational%5Falgebra" rel="nofollow">http://en.wikipedia.org/wiki/Relational%5Falgebra</a>.</p>
<p>Let me dig my library to see if I can find the name of the books I used when learning it....</p>
http://stackoverflow.com/questions/1714166/can-go-programming-language-replace-c-c/1714371#17143710Answer by Remo.D for Can Go programming language replace C/ C++ ?Remo.D2009-11-11T10:38:39Z2009-11-11T11:45:54Z<p>I yet have to give it a try but from what I've read so far it could take the C/C++ role.</p>
<p>What does Go have more than D or other "better-C" around? A giant as Google pushing and supporting it.</p>
<p>To me there's a key point that will really make the difference: how easy is to interface with existing C/C++ libraries?</p>
http://stackoverflow.com/questions/1709562/coding-standards-coding-best-practices-in-c/1709657#17096574Answer by Remo.D for Coding Standards / Coding Best practices in C++Remo.D2009-11-10T17:22:07Z2009-11-10T17:22:07Z<p>Code 1 is, IMO, worst as it does not immediately convey the intendend meaning which is to generate the repoort only in certain circumstances.</p>
<p>Using:</p>
<pre><code> if (condition_1) return false;
if (condition_2) return false;
...
</code></pre>
<p>would be better.</p>
<p>Also, what I dislike in code 1 is the fact that it try to mask gotos using a while and breaks (which <em>are</em> gotos). I would then prefer to use directly a goto, at least it would have been easier to see where the landing point is.</p>
<p>Code 2 might be formatted to look nicely, I guess:</p>
<pre><code> bool MyApplication::ReportGenerator::GenerateReport(){
if (!isAdmin() || !isConditionOne() ||
!isConditionTwo() || !isConditionThree()) {
return false;
}
return generateReport();
}
</code></pre>
<p>Or something similar.</p>
http://stackoverflow.com/questions/1707810/clear-code-for-counting-from-0-to-255-using-8-bit-datatype/1707901#17079017Answer by Remo.D for clear code for counting from 0 to 255 using 8-bit datatypeRemo.D2009-11-10T13:16:10Z2009-11-10T13:16:10Z<p>I'm not sure what you mean but</p>
<pre><code> uint8_t i = 0;
do {
...
} while (++i & 255) ;
</code></pre>
<p>should do what you ask and has an explicit reference to 255 (useless if your compiler is C99 standard and uint8_t is really 8 bits).</p>
http://stackoverflow.com/questions/172563/any-computer-language-magazine-archive-around1Any "Computer Language" magazine archive around?Remo.D2008-10-05T20:11:24Z2009-10-29T20:28:57Z
<p>Someone might remember the old magazine "Computer Language" published until the 90s from the same editor of "Doctor Dobb's Journal".</p>
<p>I've always found it very ispirational and I still have some issue in my bookshelf.</p>
<p>Does anyone know if there's an archive of the old articles somewhere? I remember there was a CD with several issues digitized but I've found no mention of it on the CMP website.</p>
http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/166979#1669790Answer by Remo.D for Language showdown: Convert string of digits to array of integers?Remo.D2008-10-03T13:51:16Z2009-09-29T10:01:03Z<p>in <a href="http://en.wikipedia.org/wiki/Lua%5F%28programming%5Flanguage%29" rel="nofollow">Lua</a>:</p>
<pre><code>a = {}
string.gsub("1234","%d",function (d) a[#a+1] = tonumber(d) end)
</code></pre>
http://stackoverflow.com/questions/231438/cuckoo-hashing-in-c6Cuckoo hashing in CRemo.D2008-10-23T20:45:11Z2009-05-15T21:55:34Z
<p>Does anybody have an implementation of <a href="http://en.wikipedia.org/wiki/Cuckoo_hashing" rel="nofollow">Cuckoo hashing</a> in C? If there was an Open Source, non GPL version it would be perfect!</p>
<p>Since Adam mentioned it in his comment, anyone knows why it is not much used? Is it just a matter of implementation or the good theoretical properties do not materialize in practice?</p>
http://stackoverflow.com/questions/692382/c-style-macros-or-preprocessor2C style: Macros or preprocessor?Remo.D2009-03-28T07:24:40Z2009-03-30T19:26:25Z
<p>I've written a library to match strings against a set of patterns and I can now easily embed lexical scanners into C programs.</p>
<p>I know there are many well established tools available to create lexical scanners (lex and re2c, to just name the first two that come to mind) <strong>this question is not about lexers, it's about the best approach to "extend" C syntax</strong>. The lexer example is just a concrete case of a general problem. </p>
<p>I can see two possible solutions:</p>
<ol>
<li><strong>write a preprocessor</strong> that converts a source file with the embedded lexer to a plain C file and, possibly, to a set of other files to be used in the compilation.</li>
<li><strong>write a set of C macros</strong> to represent lexers in a more readable form.</li>
</ol>
<p>I've already done both but the question is: <strong>"which one would you consider a better practice according the following criteria?"</strong></p>
<ul>
<li>Readability. The lexer logic should be clear and easy to understand</li>
<li>Maintainability. Finding and fixing a bug should not be a nightmare!</li>
<li>Interference in the build process. The preprocessor will require an additional step in the build process, the preprocessor will have to be in the path etc etc.</li>
</ul>
<p>In other words, if you had to maintain or write a piece of software that is using one of the two approaches, wich one will disappoint you less?</p>
<p>As an example, here is a lexer for the following problem:</p>
<ul>
<li>Sum all numbers (can be in decimal form including exponential like 1.3E-4.2)</li>
<li>Skip strings (double and single quoted)</li>
<li>skip lists (similar to LISP lists: (3 4 (0 1)() 3) )</li>
<li>stop on encountering the word end (case is irrelevant) or at the end of the buffer</li>
</ul>
<p>In the two styles.</p>
<pre><code>/**** SCANNER STYLE 1 (preprocessor) ****/
#include "pmx.h"
t = buffer
while (*t) {
switch pmx(t) { /* the preprocessor will handle this */
case "&q" : /* skip strings */
break;
case "&f<?=eE>&F" : /* sum numbers */
sum += atof(pmx(Start,0));
break;
case "&b()": /* skip lists */
break;
case "&iend" : /* stop processing */
t = "";
break;
case "<.>": /* skip a char and proceed */
break;
}
}
</code></pre>
<p><hr /></p>
<pre><code>/**** SCANNER STYLE 2 (macros) ****/
#include "pmx.h"
/* There can be up to 128 tokens per scanner with id x80 to xFF */
#define TOK_STRING x81
#define TOK_NUMBER x82
#define TOK_LIST x83
#define TOK_END x84
#define TOK_CHAR x85
pmxScanner( /* pmxScanner() is a pretty complex macro */
buffer
,
pmxTokSet("&q" , TOK_STRING)
pmxTokSet("&f<?=eE>&F" , TOK_NUMBER)
pmxTokSet("&b()" , TOK_LIST)
pmxTokSet("&iend" , TOK_END)
pmxTokSet("<.>" , TOK_CHAR)
,
pmxTokCase(TOK_STRING) : /* skip strings */
continue;
pmxTokCase(TOK_NUMBER) : /* sum numbers */
sum += atof(pmxTokStart(0));
continue;
pmxTokCase(TOK_LIST): /* skip lists */
continue;
pmxTokCase(TOK_END) : /* stop processing */
break;
pmxTokCase(TOK_CHAR) : /* skip a char and proceed */
continue;
);
</code></pre>
<p>Should anyone be interested in the current implementation, the code is here: <a href="http://sites.google.com/site/clibutl" rel="nofollow">http://sites.google.com/site/clibutl</a> .</p>
http://stackoverflow.com/questions/695218/are-there-any-remote-virtual-source-control-options/695228#6952284Answer by Remo.D for Are there any remote/virtual source control options?Remo.D2009-03-29T19:44:50Z2009-03-29T19:44:50Z<p>If it's an Open Source project, Google code or Sourceforge can be a good solution.</p>
<p>If it's a closed source project there are many options. I suggest to look at this <strong><a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Ffree%5Fsoftware%5Fhosting%5Ffacilities" rel="nofollow">Wikipedia</a></strong> page for a comparison. </p>
http://stackoverflow.com/questions/694909/how-do-you-make-diagrams-of-memory-and-data-structures/695033#6950334Answer by Remo.D for How do you make diagrams of memory and data structures?Remo.D2009-03-29T17:51:28Z2009-03-29T18:04:30Z<p>I echo the suggestion of drawing them on paper first and then, if you feel the need, you can include an ascii version of them into the code.</p>
<p>I normally use these three formats:</p>
<p><hr /></p>
<p>to reason about memory:</p>
<pre>
+--------+
0 | | <- start
+--------+
1 | | <- q scans from start to end
+--------+
~ ..... ~
+--------+
| | <- end
+--------+ \
| | |
+--------+ |__ rest of the
~ ..... ~ | allocated memory
n | | |
+--------+ /
</pre>
<p><hr /></p>
<p>to reason about strings:</p>
<pre>
0 n
+--+-- --+--+--+--+
| | ... | | |\0|
+--+- --+--+--+--+
^ ^__ q moves from the
| end to the start
p moves from
start to the end
</pre>
<p><hr /></p>
<p>to reason about bits in a word:</p>
<pre>
xxxx yyzz 00tt 11ss
\ \ \ \ \ \ \__ storage registry
\ \ \ \ \ \___ always set to 1
\ \ \ \ \_____ temp value
\ \ \ \______ always zeroed
\ \ \________ zero flag value
\ \_________ y register
\_____________ x address
</pre>
<p><hr /></p>
<p>I used to do something similar for finite state machines too but they tended to be too complex (and time consuming to do) so I now directly embed the graphviz code into a comment. Even not knowing about GraphViz it should be easy to guess how to draw the FSM diagram.</p>
<pre>
digraph G {
mode = hier
LIMBO [style= filled];
node [shape = ellipse];
LIMBO -> HEADER ;
HEADER -> LIMBO;
HEADER -> TUNE ;
TUNE -> LYRICS ;
TUNE -> CHORD [style=dashed ];
TUNE -> LIMBO ;
GRACE -> TUNE ;
GRACE -> CHORD [style=dashed ] ;
SYMBOLS -> TUNE ;
SYMBOLS -> LIMBO ;
overlap=false
sep = 1.5
}
</pre>
<p><hr /></p>
<p>These cover the vast majority of diagrams I need. For more complex ones I use GraphViz or OpenOffice Draw.</p>
http://stackoverflow.com/questions/589852/export-from-html-to-pdf-c/589877#5898772Answer by Remo.D for Export from HTML to PDF (C#)Remo.D2009-02-26T09:55:01Z2009-02-26T09:55:01Z<p>I would opt for creating a PDF file on the server. There are many products that do so but you should research the one that works best in your case considering the following:</p>
<ul>
<li>Computer resources needed to create the PDF. If it's a complex document it may take too long and or slow down the response to other users.</li>
<li>Number of concurrent users that will require this same function</li>
<li>Cost (there are free solutions as well as heavy weight commercial products).</li>
</ul>
<p>I would not rely on Word format for that as PDF will give you some more guarantee that it will be readable in the future.</p>
<p>Also, the option of embedding hard links to the images don't seem a good idea to me. What if the user wants to open the document and the server is not accessible?</p>
http://stackoverflow.com/questions/1791511/run-exe-from-client-sideComment by Remo.D on Run EXE FROM CLIENT SIDERemo.D2009-11-24T17:13:02Z2009-11-24T17:13:02ZLet's hope you can't, imagine clicking on a link and having format.exe run on your pc. Not very pleasent.http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/1780206#1780206Comment by Remo.D on Do you listen to anything while programming?Remo.D2009-11-22T22:27:07Z2009-11-22T22:27:07Z+1 for magnatune and the instrumental. Let me add Jamendo (<a href="http://jamendo.com" rel="nofollow">jamendo.com</a>) http://stackoverflow.com/questions/1776961/finite-state-machine-programComment by Remo.D on Finite State Machine programRemo.D2009-11-21T22:22:59Z2009-11-21T22:22:59Z... more importantly, how are you going to represent the "definition of what each state is supposed to do"? You should provide some more information on what you need to do. http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gcc/1772160#1772160Comment by Remo.D on Disabling NUL-termination of strings in GCCRemo.D2009-11-20T23:17:45Z2009-11-20T23:17:45ZI'm sure you have good reasons for doing this but, if I understand how buffer overrun exploits work, having the string on the stack is more dangerous than having them allocated on the heap.
About adding the '\0' at the end, I don't see how the content of string is copied into temp, and I think that you're using a gcc extension rather than C99.
http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772291#1772291Comment by Remo.D on C - the most useful user-made C-macros (in GCC, also C99) ?Remo.D2009-11-20T18:18:30Z2009-11-20T18:18:30Z@nikie because the C99 inline specification for functions is not supported by many compilers.http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772148#1772148Comment by Remo.D on C - the most useful user-made C-macros (in GCC, also C99) ?Remo.D2009-11-20T17:54:57Z2009-11-20T17:54:57Zand I think it's not right too. There are things you can do with macros that you can't do with functions.
The fact that somebody could abuse macros it's not an argument for suggesting they should be forbiddenhttp://stackoverflow.com/questions/1771659/format-a-string-in-c/1771676#1771676Comment by Remo.D on Format a string in CRemo.D2009-11-20T16:34:04Z2009-11-20T16:34:04ZWell, it looks like others alredy deprived you of the pleasure of discovery :)http://stackoverflow.com/questions/1769708/how-to-parse-text-with-delimitersComment by Remo.D on How to parse text with delimiters?Remo.D2009-11-20T11:00:13Z2009-11-20T11:00:13ZI think this is the third time this question is asked. Is it a sort of homework or what?http://stackoverflow.com/questions/1759057/how-to-check-if-structs-are-initialised-or-notComment by Remo.D on How to check if structs are initialised or notRemo.D2009-11-18T21:33:49Z2009-11-18T21:33:49Z@nubela . just a suggestion. Do not accept the first answer you look at, give people the time to write a more coomprehensive answer.
Just being rewarded for having been the fastest to answer is not going to improve the overall quality of SO answers.
http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758930#1758930Comment by Remo.D on How do I have a variable in C that can accept various types?Remo.D2009-11-18T21:09:33Z2009-11-18T21:09:33ZWell, my old brain is not that comfortable with a Win32 only concept :)http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758961#1758961Comment by Remo.D on How do I have a variable in C that can accept various types?Remo.D2009-11-18T20:54:17Z2009-11-18T20:54:17Z@tloach, I guess there are very few options :)
http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758961#1758961Comment by Remo.D on How do I have a variable in C that can accept various types?Remo.D2009-11-18T20:52:39Z2009-11-18T20:52:39ZBtw I opted for using macros to hide the ugliness, if you want to have a look: <a href="http://code.google.com/p/c-libutl/source/browse/trunk/src/tbl.h" rel="nofollow">code.google.com/p/c-libutl/…</a>
http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758930#1758930Comment by Remo.D on How do I have a variable in C that can accept various types?Remo.D2009-11-18T20:50:27Z2009-11-18T20:50:27ZHow could you use Variants from C?http://stackoverflow.com/questions/1707810/clear-code-for-counting-from-0-to-255-using-8-bit-datatype/1707901#1707901Comment by Remo.D on clear code for counting from 0 to 255 using 8-bit datatypeRemo.D2009-11-18T20:34:25Z2009-11-18T20:34:25ZI didn't know for sure but I suspected something like this could happen, hence the & with 255.
Of course the accepted answer would also behae correctly in this case.http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation/1748669#1748669Comment by Remo.D on Character decoding Conversion Function ImplementationRemo.D2009-11-17T16:20:22Z2009-11-17T16:20:22ZHave a look at minimal perfect hashing. If you have n keys, you know them in advance and they don't change, it is possible to determine a function h(x) that returns an integer from 0 to n and such that h(k1) = h(k2) <=> k1=k2.
In your case you will only need an array of 256 bytes. Of course you will also have to link the hash function, but you will need some lookup code anyway, ...
Minimal perfect hashing is normally used by compilers to look up the language keywords.
I've added the Wikipedia link for and easier check.