<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HP C RTL routine strncasecmp declaration in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942680#M22286</link>
    <description>John, why are you mad at me?&lt;BR /&gt;&lt;BR /&gt;I always have good impressions on you, infact when I post my question, I was expecting any suggestions especially from you.&lt;BR /&gt;&lt;BR /&gt;please go thru my responses, Before I see your first response, I mentioned my Cprog compiled successfully after changing "int n" to "size_t n". After this, I saw your response, but anyway I assigned points for your response; respecting your valuable time and suggestions.&lt;BR /&gt;&lt;BR /&gt;I started this thread with "I receive&lt;BR /&gt;--COMPILTION-- error as strncasecmp is not compatible with the type of a declaration in DECC$RTLDEF.TLB". Please do go through Mr.Steven responses, he has entered after I said "no compilation error"; after everything is solved, he tries to create new questions where I need no advices and clever lessions. I observe from starting onwords, he loves arguments and blaming other members. Instead of concentrating and blaming others members responses, he better can concentrate giving suggestions on the intial customer's question. Forum members posting their questions with the expectations of getting quick answer (quicker than HP customer support or going through our HP excellent documents). If we argu on each other's answers irresponsibly, then one our forum member who waits for answer, will lose his one customer.&lt;BR /&gt;&lt;BR /&gt;even now I would like to use/respect this forum as alternate to HP support, not for any --ARGUEMENTS and BLAMING --, there are so many forums in the net for arguments, blaming and technical research. But I would like "THIS FORUM" to be difft.&lt;BR /&gt;&lt;BR /&gt;Bear with me John if my expectations from this forum differs.&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
    <pubDate>Thu, 24 Nov 2005 18:38:01 GMT</pubDate>
    <dc:creator>Arch_Muthiah</dc:creator>
    <dc:date>2005-11-24T18:38:01Z</dc:date>
    <item>
      <title>HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942664#M22270</link>
      <description>Wish you all "Happy thanksgiving and holiday session!!!"...&lt;BR /&gt;&lt;BR /&gt;Env: OpenVMS 7.3-2/Alpha DS10, HP C V6.5.&lt;BR /&gt;&lt;BR /&gt;strncasecmp funtion in string.h( DECC$RTLDEF.TLB) declared as int strncasecmp( const char *, const char *, __size_t)&lt;BR /&gt;&lt;BR /&gt;But the DCL help says int strncasecmp (const char *s1, const char *s2, size_t n)&lt;BR /&gt;&lt;BR /&gt;I have strncasecmp funtion in my HP C program, declared as int strncasecmp (const char *s1, const char *s2, int n).&lt;BR /&gt;&lt;BR /&gt;But I receive compilation error as "strncasecmp" is not compatible with the type of a declaration in DECC$RTLDEF.TLB.&lt;BR /&gt;&lt;BR /&gt;strncasecmp declaration in string.h and DCL HELP shows difference. How to declare this function in my program? It looks me string.h has typo in declaring strncasecmp.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 14:14:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942664#M22270</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T14:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942665#M22271</link>
      <description>You declare it by including string.h, that's what header files are for.&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Nov 2005 14:40:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942665#M22271</guid>
      <dc:creator>David Jones_21</dc:creator>
      <dc:date>2005-11-23T14:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942666#M22272</link>
      <description>Dave,&lt;BR /&gt;&lt;BR /&gt;You see my declaration syntax, and I have string.h included in my program. But the receive the error "not compatible functions".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 14:52:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942666#M22272</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T14:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942667#M22273</link>
      <description>Archunan,&lt;BR /&gt;&lt;BR /&gt;  I'm not sure I understand why you're declaring the routine twice. Once in string.h and once by yourself. Are you trying to substitute your own routine?&lt;BR /&gt;&lt;BR /&gt;  string.h is correct. The third argument is of type "__size_t". If you read the code, you'll see that __size_t may be defined as size_t, but the implementation is free to define it as something else.&lt;BR /&gt;&lt;BR /&gt;  Look for yourself:&lt;BR /&gt;&lt;BR /&gt;$ LIBRARY/EXTRACT=STRING SYS$SHARE:DECC$RTLDEF/TEXT/OUT=STRING.H&lt;BR /&gt;&lt;BR /&gt;  The reason for this is to make the compiler, and hence your code, less likely to be dependent on a particular hardware size for INTEGER or POINTER types (Hext's rule of programming: "One further level of indirection solves all problems")&lt;BR /&gt;&lt;BR /&gt;  Please explain why you need to redeclare the function, so I can work out what you're trying to achieve. Maybe post a small, but complete, code example that shows the error (by your description just a few lines will do)&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Nov 2005 15:18:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942667#M22273</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-11-23T15:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942668#M22274</link>
      <description>John,&lt;BR /&gt;I thought I can get your response tomorrow only since your time now in australia is night, and you will be sleeping. Thanks John for your response at this time.&lt;BR /&gt;&lt;BR /&gt;I did not declare strncasecmp inside program, It is a old DEC C program developed in Alpha OVMS with previous C compiler version, Now I am trying to build.&lt;BR /&gt;&lt;BR /&gt;I found no prototype declaration of strncasecmp function inside the CProg.&lt;BR /&gt;&lt;BR /&gt;They are using this function as.....&lt;BR /&gt;&lt;BR /&gt;int strncasecmp( char *s1, char *s2, int n)&lt;BR /&gt;&lt;BR /&gt;I have already changed that function as ....&lt;BR /&gt;int strncasecmp( const char *s1, const char *s2, int n).&lt;BR /&gt;&lt;BR /&gt;This gave compilation error as "strncasecmp is not compatible with the type of a declaration in DECC$RTLDEF.TLB"&lt;BR /&gt;&lt;BR /&gt;So can I use this functions as ... &lt;BR /&gt;int strncasecmp( const char *s1, const char *s2, size_t n)?.&lt;BR /&gt;&lt;BR /&gt;Because if I change the 3rd argument as &lt;BR /&gt;"size_t n", the compilation successful.&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 16:35:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942668#M22274</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T16:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942669#M22275</link>
      <description>&amp;gt; I did not declare strncasecmp inside &lt;BR /&gt;&amp;gt; program, It is a old DEC C program&lt;BR /&gt;&amp;gt; developed in Alpha OVMS with previous C&lt;BR /&gt;&amp;gt; compiler version, Now I am trying to build.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; They are using this function as.....&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; int strncasecmp( char *s1, char *s2, int n)&lt;BR /&gt;&lt;BR /&gt;I think that's called declaring the function.&lt;BR /&gt;&lt;BR /&gt;It's not clear from your description, but we&lt;BR /&gt;might assume that the old code includes an&lt;BR /&gt;actual strncasecmp() function, because it was&lt;BR /&gt;not available in older C RTL versions.&lt;BR /&gt;&lt;BR /&gt;If that's true, you can throw it away.&lt;BR /&gt;&lt;BR /&gt;Alternatively, you can bracket the old&lt;BR /&gt;function with directives like:&lt;BR /&gt;&lt;BR /&gt;#if __CRTL_VER &amp;lt; 70000000&lt;BR /&gt;&lt;BR /&gt;[old strncasecmp() code]&lt;BR /&gt;&lt;BR /&gt;$endif /* __CRTL_VER &amp;lt; 70000000 */&lt;BR /&gt;&lt;BR /&gt;That way, when the old code is needed, it&lt;BR /&gt;will be used, and when strncasecmp() is in&lt;BR /&gt;the C RTL, the program will use that one.&lt;BR /&gt;&lt;BR /&gt;There are even more clever methods to improve&lt;BR /&gt;portability of the object code, but that's&lt;BR /&gt;another lesson.&lt;BR /&gt;&lt;BR /&gt;Look at the header file (string.h) to get the&lt;BR /&gt;proper conditionality.</description>
      <pubDate>Wed, 23 Nov 2005 16:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942669#M22275</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-23T16:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942670#M22276</link>
      <description>Dear Steve,&lt;BR /&gt;&lt;BR /&gt;&amp;gt; int strncasecmp(char *s1,char *s2,int n)&lt;BR /&gt;&amp;gt; I think that's called declaring the &lt;BR /&gt;&amp;gt; function.&lt;BR /&gt;&lt;BR /&gt;This is not the declaration statement Steve. also no need to declare any RTL functions inside any program if we include the respective *.h file. There will be a function body after "int strncasecmp()".&lt;BR /&gt;&lt;BR /&gt;I mentioned, after I change the third argument "int n" to "size_t n", the compilation went thru successfully. I asked Mr.John that whether can I change "int n" to "size_t n"?&lt;BR /&gt;&lt;BR /&gt;&amp;lt; Alternatively, you can bracket the old&lt;BR /&gt;&amp;lt; function with directives like:&lt;BR /&gt;&amp;lt; #if __CRTL_VER &amp;lt; 70000000&lt;BR /&gt;&amp;lt; [old strncasecmp() code]&lt;BR /&gt;&amp;lt; $endif /* __CRTL_VER &amp;lt; 70000000 */&lt;BR /&gt;&lt;BR /&gt;The latest OS comming with updated RTLs, so&lt;BR /&gt;we don't need to worry about __CRTL_VER macro, because the important purpose of this macro is to provide the required C RTL API and to categorise 32 and 64 bit support for the VMS where we compile. the compiler.   &lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 17:55:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942670#M22276</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T17:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942671#M22277</link>
      <description>It's still not clear.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] no need to declare any RTL functions&lt;BR /&gt;&amp;gt; inside any program if we include the&lt;BR /&gt;&amp;gt; respective *.h file.&lt;BR /&gt;&lt;BR /&gt;True.  So why is there anything like&lt;BR /&gt;"int strncasecmp(char *s1,char *s2,int n)"&lt;BR /&gt;in your code?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; There will be a function body after "int&lt;BR /&gt;&amp;gt; strncasecmp()".&lt;BR /&gt;&lt;BR /&gt;In other words, the old code includes its own&lt;BR /&gt;strncasecmp() function?  I repeat:&lt;BR /&gt;&lt;BR /&gt;Throw it away.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] we don't need to worry about&lt;BR /&gt;&amp;gt; __CRTL_VER macro [...]&lt;BR /&gt;&lt;BR /&gt;Have it your way.&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Nov 2005 18:06:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942671#M22277</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-23T18:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942672#M22278</link>
      <description>And after you change the declaration of the&lt;BR /&gt;existing strncasecmp() function so that the&lt;BR /&gt;compiler is happy, what is your plan for&lt;BR /&gt;dealing with the MULDEF camplaints from the&lt;BR /&gt;linker?  Hint: Throw it away.</description>
      <pubDate>Wed, 23 Nov 2005 18:35:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942672#M22278</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-23T18:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942673#M22279</link>
      <description>Steve,&lt;BR /&gt;&lt;BR /&gt;Looks like you started enjoying the holidays!!!&lt;BR /&gt;&lt;BR /&gt;Steve, please go through your last two responses,  I already said compilation went thru successfully. I just asked Mr.John that changing "int n" to "size_t n" will be ok? Nothing more than that. But you yourself trying to get clear something and eating my time. I already cleared that, I use this forum as a alternate to HP support. Not for unneccessary arguments.&lt;BR /&gt;&lt;BR /&gt;There are so many things involved using RTL functions, user written functions, functions overloading and using C++ compiler to compile CProg. Now I don't have time, if I have problem, certainly I will be with those type of questions.&lt;BR /&gt;&lt;BR /&gt;Have a peacefull holiday session!!!&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 18:51:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942673#M22279</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T18:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942674#M22280</link>
      <description>Archunan,&lt;BR /&gt;&lt;BR /&gt;&amp;gt; since your time now in australia is night,&lt;BR /&gt;&lt;BR /&gt;  Maybe it's a different Australia from the one you're thinking of ;-) It's definitely day here. Both now, and when I responded earlier :-)&lt;BR /&gt;&lt;BR /&gt;  I have to strongly agree with Steven, you should simply remove all declarations of strncasecmp from your code. Indeed, all lines of code than mention strncasecmp, except those that are calling it. Just make sure you have: &lt;BR /&gt;&lt;BR /&gt;#include &lt;STRING&gt; &lt;BR /&gt;&lt;BR /&gt;  and it should all "just work".&lt;/STRING&gt;</description>
      <pubDate>Wed, 23 Nov 2005 18:58:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942674#M22280</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-11-23T18:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942675#M22281</link>
      <description>Dave/John/Steve,&lt;BR /&gt;&lt;BR /&gt;Thanks for your time.&lt;BR /&gt;after I changed the third arg from "int n" to "size_t n", the compilations was successfull.&lt;BR /&gt;&lt;BR /&gt;I wanted to give minus point to Steve for his unnecessary interruption without concerning about to my question, but there is no 'minus point' option for that.&lt;BR /&gt; &lt;BR /&gt;Though I need confirmation from John, I wanted to close this thread urgently, otherwise I will be flooded with Stev'e unnecessary questions and blaming.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;archunan</description>
      <pubDate>Wed, 23 Nov 2005 19:02:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942675#M22281</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T19:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942676#M22282</link>
      <description>Sorry John for 0 point.&lt;BR /&gt;&lt;BR /&gt;I asked some other thing. The question left unanswered was about changing "int n" to "size_t n".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Wed, 23 Nov 2005 19:30:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942676#M22282</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-23T19:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942677#M22283</link>
      <description>&amp;gt; The question left unanswered was about&lt;BR /&gt;&amp;gt; changing "int n" to "size_t n".&lt;BR /&gt;&lt;BR /&gt;The answer was:&lt;BR /&gt;&lt;BR /&gt;"[...] [Y]ou should simply remove all&lt;BR /&gt;declarations of strncasecmp from your code."&lt;BR /&gt;&lt;BR /&gt;You didn't seem to like that one (from him or&lt;BR /&gt;from me), but that's the answer.</description>
      <pubDate>Wed, 23 Nov 2005 19:59:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942677#M22283</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-23T19:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942678#M22284</link>
      <description>Amazing!!! Steve. you are too much responsible!!! for each every psoting on this forum.&lt;BR /&gt;&lt;BR /&gt;Yesterday itself, I compiled, linked, and tested. Now I am out of that CProg.&lt;BR /&gt;&lt;BR /&gt;If you have any doubt or if you don't like my CProg to work or if you interested in arguments, I am not available to arguments, but you can catch HP support personal for your new doubts, or lodge a complaint with HP on "how can Archunan's CProg be worked".&lt;BR /&gt;&lt;BR /&gt;Please don't drag me further on this thread.&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Thu, 24 Nov 2005 15:29:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942678#M22284</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-24T15:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942679#M22285</link>
      <description>Archunan,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Please don't drag me further on this thread.&lt;BR /&gt;&lt;BR /&gt;  Sorry, I have to agree with Steven on this. You asked for our advice, we gave it, but you're now arguing why you're right and we're wrong! &lt;BR /&gt;&lt;BR /&gt;  If your program still contains any definition for strncasecmp then it's wrong. Plain and simple. Yes it might compile cleanly and "work" now, but that doesn't make it correct. Sometime down the track it may stop working. If you remove the definition(s), your program will be correct, and it will continue to work in future versions.&lt;BR /&gt;&lt;BR /&gt;  Hint... if you don't like the advice, that's your business, but the way you've responded in this thread will make me think twice before taking up my time composing answers to your future questions.</description>
      <pubDate>Thu, 24 Nov 2005 16:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942679#M22285</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-11-24T16:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942680#M22286</link>
      <description>John, why are you mad at me?&lt;BR /&gt;&lt;BR /&gt;I always have good impressions on you, infact when I post my question, I was expecting any suggestions especially from you.&lt;BR /&gt;&lt;BR /&gt;please go thru my responses, Before I see your first response, I mentioned my Cprog compiled successfully after changing "int n" to "size_t n". After this, I saw your response, but anyway I assigned points for your response; respecting your valuable time and suggestions.&lt;BR /&gt;&lt;BR /&gt;I started this thread with "I receive&lt;BR /&gt;--COMPILTION-- error as strncasecmp is not compatible with the type of a declaration in DECC$RTLDEF.TLB". Please do go through Mr.Steven responses, he has entered after I said "no compilation error"; after everything is solved, he tries to create new questions where I need no advices and clever lessions. I observe from starting onwords, he loves arguments and blaming other members. Instead of concentrating and blaming others members responses, he better can concentrate giving suggestions on the intial customer's question. Forum members posting their questions with the expectations of getting quick answer (quicker than HP customer support or going through our HP excellent documents). If we argu on each other's answers irresponsibly, then one our forum member who waits for answer, will lose his one customer.&lt;BR /&gt;&lt;BR /&gt;even now I would like to use/respect this forum as alternate to HP support, not for any --ARGUEMENTS and BLAMING --, there are so many forums in the net for arguments, blaming and technical research. But I would like "THIS FORUM" to be difft.&lt;BR /&gt;&lt;BR /&gt;Bear with me John if my expectations from this forum differs.&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Thu, 24 Nov 2005 18:38:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942680#M22286</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-11-24T18:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942681#M22287</link>
      <description>&amp;gt; John, why are you mad at me?&lt;BR /&gt;&lt;BR /&gt;Why do take a simple correction as a personal&lt;BR /&gt;insult?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Please do go through Mr.Steven responses,&lt;BR /&gt;&amp;gt; he has entered after I said "no&lt;BR /&gt;&amp;gt; compilation error"; [...]&lt;BR /&gt;&lt;BR /&gt;Note that _I_ was the first one to mention&lt;BR /&gt;linking.  You initially said it had been&lt;BR /&gt;compiled, not that it had also been linked.&lt;BR /&gt;&lt;BR /&gt;As most of us are not members of the Psychic&lt;BR /&gt;Friends Network, we are forced to work with&lt;BR /&gt;the information you give us, not with all the&lt;BR /&gt;information you might have.&lt;BR /&gt;&lt;BR /&gt;Mr. Gillings was correct (as was I) when he&lt;BR /&gt;said that there is no good reason for you to&lt;BR /&gt;have any declaration of strncasecmp() in&lt;BR /&gt;your program.  I'm sure that we would all be&lt;BR /&gt;open to a good counter-argument, but I don't&lt;BR /&gt;expect one.  As always, you are free to&lt;BR /&gt;ignore any advice you get here, no matter&lt;BR /&gt;how good (or bad) it might be.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; How to declare this function in my program? &lt;BR /&gt;&lt;BR /&gt;"If &lt;STRING.H&gt; does it, you don't do it!" is&lt;BR /&gt;still the right answer, what ever you think&lt;BR /&gt;of me (or anyone else) personally.&lt;BR /&gt;&lt;BR /&gt;My personal advice would be, "Grow up.", but&lt;BR /&gt;you're free to ignore that, too.&lt;/STRING.H&gt;</description>
      <pubDate>Fri, 25 Nov 2005 00:04:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942681#M22287</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-25T00:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942682#M22288</link>
      <description>Archunan, Steven, &amp;amp; John,&lt;BR /&gt;&lt;BR /&gt;Maybe it will be better if you all take a 24 hour timeout before reacting again.&lt;BR /&gt;&lt;BR /&gt;To all 3:&lt;BR /&gt;From the sideline it looks like your deepest arguments are linguistic.&lt;BR /&gt;Please try to get the intensions behind each others postings, before reacting to your own interpretations of the literal text.&lt;BR /&gt;I know that is more difficult, but clearly we all do not have the same agility with English. Foreign languages CAN pose extra problems!&lt;BR /&gt;&lt;BR /&gt;Please - no more personal attacks in this forum.&lt;BR /&gt;&lt;BR /&gt;Oke?&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;PS - Zero points for this, please.</description>
      <pubDate>Fri, 25 Nov 2005 04:09:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942682#M22288</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-11-25T04:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: HP C RTL routine strncasecmp declaration</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942683#M22289</link>
      <description>Are you doing anything interesting with the CC&lt;BR /&gt;options /PREFIX or /STANDARD?  That could&lt;BR /&gt;affect the results.</description>
      <pubDate>Fri, 25 Nov 2005 17:05:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-rtl-routine-strncasecmp-declaration/m-p/4942683#M22289</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-11-25T17:05:40Z</dc:date>
    </item>
  </channel>
</rss>

