User Randy Proctor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T11:02:28Zhttp://stackoverflow.com/feeds/user/22131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827396/c-function-merge-help/1827912#18279122Answer by Randy Proctor for c function merge helpRandy Proctor2009-12-01T18:19:14Z2009-12-01T18:19:14Z<p>You could implement the free function with a void * and field offsets. Untested:</p>
<pre><code>void free_either(void *either, size_t other_offset, size_t next_offset)
{
void *either_tmp;
while (either_tmp = either)
{
free((char *)either + other_offset);
either_tmp = (char *)either + next_offset;
free(either);
}
}
free_either(this,offsetof(THIS,str),offsetof(THIS,next));
free_either(that,offsetof(THAT,id),offsetof(THAT,next));
</code></pre>
<p>You could then create macros to replace the old <code>free_this</code> or <code>free_that</code> functions.</p>
http://stackoverflow.com/questions/1728683/case-insensitive-comparision-of-strings-in-shell-script/1728763#17287630Answer by Randy Proctor for Case Insensitive comparision of strings in Shell scriptRandy Proctor2009-11-13T11:52:35Z2009-11-13T11:52:35Z<p>One way would be to convert both strings to upper or lower:</p>
<pre><code>test $(echo "string" | /bin/tr -s '[:upper:]' '[:lower:]') = $(echo "String" | /bin/tr -s '[:upper:]' '[:lower:]') && echo same || echo different
</code></pre>
<p>Another way would be to use grep:</p>
<pre><code>echo "string" | grep -qi '^String$' && echo same || echo different
</code></pre>
http://stackoverflow.com/questions/1708200/saying-c-c-are-equal-by-functionality-but-not-by-concept/1708233#170823313Answer by Randy Proctor for Saying "C & C# are equal by functionality, but not by concept"Randy Proctor2009-11-10T14:09:06Z2009-11-10T14:09:06Z<p>Well, they are both Turing complete.</p>
http://stackoverflow.com/questions/1687642/set-screen-title-from-shellscript/1687710#16877103Answer by Randy Proctor for Set screen-title from shellscriptRandy Proctor2009-11-06T13:49:17Z2009-11-06T13:49:17Z<pre><code>set_screen_title ()
{
echo -ne "\ek$1\e\\"
}
</code></pre>
http://stackoverflow.com/questions/1680194/reverse-a-word-in-vim/1680392#16803922Answer by Randy Proctor for Reverse a word in VimRandy Proctor2009-11-05T12:55:29Z2009-11-05T12:55:29Z<p>If you have some time on your hands, you can bubble your way there by iteratively transposing characters (<code>xp</code>)...</p>
http://stackoverflow.com/questions/1675092/is-there-c-syntax-for-function-pointer-from-function-declaration/1675452#16754520Answer by Randy Proctor for Is There C Syntax For Function Pointer From Function DeclarationRandy Proctor2009-11-04T17:38:37Z2009-11-04T17:38:37Z<p>Not quite the same, but you can typedef the function and use it for both the prototype and the pointer.</p>
<pre><code>typedef int fooFunc(int);
fooFunc foo;
fooFunc *aFunc;
</code></pre>
http://stackoverflow.com/questions/1650164/bash-copy-named-files-recursively-preserving-folder-structure/1650178#16501788Answer by Randy Proctor for BASH: Copy named files recursively, preserving folder structureRandy Proctor2009-10-30T14:36:20Z2009-10-30T14:36:20Z<p>One way:</p>
<pre><code>tar cf - <files> | (cd /dest; tar xf -)
</code></pre>
http://stackoverflow.com/questions/1323314/detecting-if-a-given-number-is-an-integer/1323336#13233363Answer by Randy Proctor for Detecting if a given number is an integerRandy Proctor2009-08-24T16:17:33Z2009-08-24T16:17:33Z<p>if (Math.floor(x) == x)</p>
http://stackoverflow.com/questions/1074228/is-there-any-java-function-or-util-class-which-does-rounding-this-way-func3-2/1074316#10743162Answer by Randy Proctor for Is there any Java function or util class which does rounding this way: func(3/2) = 2?Randy Proctor2009-07-02T13:24:24Z2009-07-02T13:24:24Z<p>To convert floor division to ceiling division:</p>
<pre><code>(numerator + denominator-1) / denominator
</code></pre>
<p>To convert floor division to rounding division:</p>
<pre><code>(numerator + (denominator)/2) / denominator
</code></pre>
http://stackoverflow.com/questions/673119/detaching-a-process-from-terminal-entirely/673140#6731402Answer by Randy Proctor for detaching a process from terminal, entirelyRandy Proctor2009-03-23T12:05:02Z2009-03-23T12:05:02Z<p>If you are using bash, try "disown". Otherwise you can try "at now".</p>
http://stackoverflow.com/questions/635780/why-does-glibc-timezone-global-not-agree-with-system-time-on-dst/635843#6358432Answer by Randy Proctor for Why does glibc "timezone" global not agree with system time on DST?Randy Proctor2009-03-11T18:47:13Z2009-03-11T18:47:13Z<p>I don't think "timezone" changes with daylight time. Try the "daylight" variable. On my system:</p>
<pre>
The external variable timezone contains the difference, in seconds,
between UTC and local standard time (for example, in the U.S. Eastern
time zone (EST), timezone is 5*60*60). The external variable daylight
is non-zero only if a summer time zone adjustment is specified in the
TZ environment variable.
</pre>
http://stackoverflow.com/questions/610165/flush-output-in-bourne-shell/610661#6106611Answer by Randy Proctor for flush output in Bourne ShellRandy Proctor2009-03-04T13:54:59Z2009-03-04T13:54:59Z<p>Try changing:</p>
<pre>
echo "text"
</pre>
<p>To:</p>
<pre>
cat << EOF
text
EOF
</pre>
http://stackoverflow.com/questions/546486/what-is-the-best-way-to-test-for-file-existence-on-a-network-share-on-windows-vis/606645#6066450Answer by Randy Proctor for What is the best way to test for file existence on a network share on Windows Vista?Randy Proctor2009-03-03T14:43:46Z2009-03-03T14:43:46Z<p>Just open it.</p>
http://stackoverflow.com/questions/524825/automatically-replacing-variables-with-defines/602136#6021360Answer by Randy Proctor for Automatically replacing variables with #definesRandy Proctor2009-03-02T12:26:33Z2009-03-02T12:26:33Z<p>You can't do exactly what you want, since by the time the compiler gets the pre-processor output, the "ONE" token is long gone. However, if your goal is to write the list of constants once but generate both tokens and strings, then this can be done.</p>
<p>First, use a macro to build the constants as enums in a header file. File enums.h:</p>
<pre>
#ifndef ENUMS_H
#define ENUMS_H
#ifndef ENUM
#define ENUM(name,val) enum { name = val };
#endif
ENUM(ONE,1)
ENUM(TWO,2)
ENUM(THREE,3)
#endif /* ENUMS_H */
</pre>
<p>Second, redefine the macro in a .c file to create a string/integer mapping and include the .h file in the right place. File enums.c:</p>
<pre>
#include
#include
typedef struct {
char *str;
int val;
} DescriptiveEnum;
static DescriptiveEnum enums[] = {
#define ENUM(name,val) { #name, val },
#include "enums.h"
};
#define NUM_ENUMS (sizeof(enums)/sizeof(enums[0]))
char *enum_to_str(int val)
{
int i;
for (i=0;i<NUM_ENUMS;i++) {
if (enums[i].val == val) return enums[i].str;
}
return "";
}
</pre>
<p>Now both the enum constants and the mapping function are available to callers. File main.c:</p>
<pre>
#include <stdio.h>
#include <stdlib.h>
#include "enums.h"
char *enum_to_str(int val);
int main(int argc, char *argv[])
{
int val;
val = ONE;
printf("%d %s\n",val,enum_to_str(val));
return EXIT_SUCCESS;
}
</pre>
http://stackoverflow.com/questions/596306/using-the-open-system-call/596337#5963379Answer by Randy Proctor for Using the open() system callRandy Proctor2009-02-27T19:51:38Z2009-02-27T19:51:38Z<p>You probably need the third argument. For example:</p>
<pre>
open('path',O_WRONLY|O_CREAT,0640);
</pre>
http://stackoverflow.com/questions/560582/idle-session-in-aix/560758#5607580Answer by Randy Proctor for Idle Session in aixRandy Proctor2009-02-18T11:53:45Z2009-02-18T11:53:45Z<p><a href="http://en.wikipedia.org/wiki/GNU_Screen" rel="nofollow">GNU Screen</a> is a more general solution to this problem.</p>
http://stackoverflow.com/questions/556316/how-to-rename-move-all-files-with-a-certain-extension/556735#5567350Answer by Randy Proctor for How to rename/move all files with a certain extension?Randy Proctor2009-02-17T13:17:05Z2009-02-17T18:39:39Z<pre>
$ ls -1
1.status
2.status
rename.tclsh*
some_dir/
two words.status
$ cat rename.tclsh
#!/usr/local/bin/tclsh
eval exec /bin/mv [glob *.status] some_dir
$ ./rename.tclsh
$ ls -1
rename.tclsh*
some_dir/
$ ls -1 some_dir/
1.status
2.status
two words.status
</pre>
http://stackoverflow.com/questions/529460/how-to-get-ctags-to-pick-up-functions-in-a-h-file/529513#5295131Answer by Randy Proctor for How to get ctags to pick up functions in a .h file ?Randy Proctor2009-02-09T19:30:13Z2009-02-09T19:49:41Z<p>You need to add --c-types=+p (now --c-kinds).</p>
http://stackoverflow.com/questions/529054/how-to-escape-extended-pathname-expansion-patterns-in-quoted-expressions/529114#5291141Answer by Randy Proctor for How to escape extended pathname expansion patterns in quoted expressions?Randy Proctor2009-02-09T17:40:46Z2009-02-09T17:40:46Z<pre>
$ bash -O extglob -c 'echo !(file2)'
file1 file3
</pre>
http://stackoverflow.com/questions/326937/subversion-how-to-merge-only-specific-revisions-into-trunk-when-multiple-consecu/487926#4879262Answer by Randy Proctor for Subversion: How to merge only specific revisions into trunk when multiple consecutive changes are made in a branch?Randy Proctor2009-01-28T15:02:03Z2009-01-28T15:07:46Z<p>I believe you are including the revisions you want correctly, but the merge algorithm is failing to find the place to insert the wanted change and so including the line above it also. Here are the same steps but with a different set of changes, and I believe it works as you expected originally:</p>
<pre>
$ svnadmin create repo
$ svn mkdir -m '' file://`pwd`/repo/trunk
Committed revision 1.
$ svn mkdir -m '' file://`pwd`/repo/branches
Committed revision 2.
$ svn co file://`pwd`/repo/trunk co.trunk
Checked out revision 2.
$ cat > co.trunk/test.txt << EOF
> A
> B
> C
> EOF
$ svn add co.trunk/test.txt
A co.trunk/test.txt
$ svn commit -m '' co.trunk
Adding co.trunk/test.txt
Transmitting file data .
Committed revision 3.
$ svn copy -m '' file://`pwd`/repo/trunk file://`pwd`/repo/branches/testbr
Committed revision 4.
$ svn co file://`pwd`/repo/branches/testbr co.testbr
A co.testbr/test.txt
Checked out revision 4.
$ cat > co.testbr/test.txt << EOF
> A
> A1 unwanted
> B
> C
> EOF
$ svn commit -m '' co.testbr
Sending co.testbr/test.txt
Transmitting file data .
Committed revision 5.
$ cat > co.testbr/test.txt << EOF
> A
> A1 unwanted
> B
> B1 wanted
> C
> EOF
$ svn commit -m '' co.testbr
Sending co.testbr/test.txt
Transmitting file data .
Committed revision 6.
$ svn merge -r 5:6 file://`pwd`/repo/branches/testbr co.trunk
--- Merging r6 into 'co.trunk':
U co.trunk/test.txt
$ cat co.trunk/test.txt
A
B
B1 wanted
C
</pre>
http://stackoverflow.com/questions/200737/get-full-path-of-executable-of-running-process-on-hpux/473150#4731502Answer by Randy Proctor for Get full path of executable of running process on HPUX...Randy Proctor2009-01-23T14:52:24Z2009-01-23T14:52:24Z<p>On HP-UX, use pstat:</p>
<pre>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <unistd.h>
#define _PSTAT64
#include <sys/pstat.h>
int main(int argc, char *argv[])
{
char filename[PATH_MAX];
struct pst_status s;
if (pstat_getproc(&s,sizeof(s),0,getpid()) == -1) {
perror("pstat_getproc");
return EXIT_FAILURE;
}
if (pstat_getpathname(filename,sizeof(filename),&s.pst_fid_text) == -1) {
perror("pstat_getpathname");
return EXIT_FAILURE;
}
printf("filename: %s\n",filename);
return EXIT_SUCCESS;
}
</pre>
http://stackoverflow.com/questions/1784652/structs-interface/1784736#1784736Comment by Randy Proctor on Structs interfaceRandy Proctor2009-11-23T18:09:59Z2009-11-23T18:09:59ZGood question! I got nothing.http://stackoverflow.com/questions/1784652/structs-interface/1784736#1784736Comment by Randy Proctor on Structs interfaceRandy Proctor2009-11-23T17:57:25Z2009-11-23T17:57:25ZNo reason you couldn't write "aStruct.setSomeValue(VALUE)", assuming a proper init function to set some function pointers.http://stackoverflow.com/questions/1772536/strcat-vs-sprintf/1772565#1772565Comment by Randy Proctor on strcat() vs sprintf()Randy Proctor2009-11-20T19:23:29Z2009-11-20T19:23:29Zstrncpy() can leave you without a terminator. strlcpy() or strlcat() would be better.http://stackoverflow.com/questions/1687293/to-take-the-backup-of-required-files-of-svn-repositoryComment by Randy Proctor on To take the backup of required files of SVN repositoryRandy Proctor2009-11-06T12:39:05Z2009-11-06T12:39:05ZYou need the history I assume?http://stackoverflow.com/questions/1675092/is-there-c-syntax-for-function-pointer-from-function-declaration/1675452#1675452Comment by Randy Proctor on Is There C Syntax For Function Pointer From Function DeclarationRandy Proctor2009-11-04T17:39:33Z2009-11-04T17:39:33ZNevermind, beaten.http://stackoverflow.com/questions/1669589/strcat-problem-in-c-segmentation-faultComment by Randy Proctor on strcat problem in C, segmentation faultRandy Proctor2009-11-03T19:28:24Z2009-11-03T19:28:24ZThis looks like it's a long way from working. You might want to post all of the code.http://stackoverflow.com/questions/238603/how-can-i-get-a-files-size-in-cComment by Randy Proctor on How can I get a file's size in C?Randy Proctor2009-10-29T13:44:33Z2009-10-29T13:44:33ZNote that sizeof(char) is 1, by definition.http://stackoverflow.com/questions/1565790/comparing-two-identical-strings-returns-false-in-phpComment by Randy Proctor on Comparing two identical strings returns false in PHPRandy Proctor2009-10-14T11:57:59Z2009-10-14T11:57:59ZWhat does strcmp() say?http://stackoverflow.com/questions/1129499/how-to-get-the-size-of-a-dir-programatically-in-linuxComment by Randy Proctor on how to get the size of a dir programatically in linux ? Randy Proctor2009-07-15T12:49:21Z2009-07-15T12:49:21ZThe disk usage (du) and sum of file sizes (stat) are not the same thing. Which do you want?
http://stackoverflow.com/questions/440133/how-do-i-create-a-random-alpha-numeric-string-in-c/440240#440240Comment by Randy Proctor on How do I create a random alpha-numeric string in C++?Randy Proctor2009-05-15T13:02:54Z2009-05-15T13:02:54ZYou probably don't want to use a simple rand() with modulus. See:
<a href="http://c-faq.com/lib/randrange.html" rel="nofollow">c-faq.com/lib/randrange.html</a>
http://stackoverflow.com/questions/556316/how-to-rename-move-all-files-with-a-certain-extension/556735#556735Comment by Randy Proctor on How to rename/move all files with a certain extension?Randy Proctor2009-05-11T12:50:35Z2009-05-11T12:50:35ZI don't think what is be invoked is as important as how to invoke it. Replace mv with any arbitrary command and the problem still stands.http://stackoverflow.com/questions/635780/why-does-glibc-timezone-global-not-agree-with-system-time-on-dst/635843#635843Comment by Randy Proctor on Why does glibc "timezone" global not agree with system time on DST?Randy Proctor2009-03-11T19:16:07Z2009-03-11T19:16:07ZI think I agree with you. I'd suggest { time_t t = time(NULL); printf("%d\n",(int)difftime(mktime(gmtime(&t)),t)); } but that gives me the same result as "timezone".http://stackoverflow.com/questions/612739/the-debugger-has-exited-due-to-signal-10-when-writing-a-char-iteration/612758#612758Comment by Randy Proctor on "The Debugger has exited due to signal 10" when writing a char* iterationRandy Proctor2009-03-04T22:30:55Z2009-03-04T22:30:55ZGood answer, but for completeness, strlcpy() is preferred.
http://stackoverflow.com/questions/612739/the-debugger-has-exited-due-to-signal-10-when-writing-a-char-iterationComment by Randy Proctor on "The Debugger has exited due to signal 10" when writing a char* iterationRandy Proctor2009-03-04T22:27:29Z2009-03-04T22:27:29ZWhat is the value of n?http://stackoverflow.com/questions/610165/flush-output-in-bourne-shell/610661#610661Comment by Randy Proctor on flush output in Bourne ShellRandy Proctor2009-03-04T14:24:17Z2009-03-04T14:24:17ZI suspected they might write differently (different buffer sizes, etc.), and it worked for me. Of course you can't entirely fix the problem without locking of some sort, but choice of write method might make it less noticeable.