<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.lang.c Google Group</title>
  <link>http://groups.google.co.id/group/comp.lang.c</link>
  <description>Discussion about C.</description>
  <language>en</language>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/e963fc6097d13964?show_docid=e963fc6097d13964</link>
  <description>
  You can tell when Nigles is off his medication... :-)
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/e963fc6097d13964?show_docid=e963fc6097d13964</guid>
  <author>
  friz...@tx.rr.com
  (Charles Richmond)
  </author>
  <pubDate>Sat, 20 Mar 2010 01:43:19 UT
</pubDate>
  </item>
  <item>
  <title>Re: Cryptic Syntax</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/07b10dfc97169023?show_docid=07b10dfc97169023</link>
  <description>
  Hard to say what it does because it&#39;s nonsense. There is no &lt;br&gt; declaration for z. The comment is meaningless. &lt;br&gt; If z were declared to be a pointer of any kind, then the (int*) would &lt;br&gt; cast it to a pointer to int. The * dereferences this pointer. &lt;br&gt; Consequently &lt;br&gt; *(int*)(z) &lt;br&gt; has type int. The &lt;br&gt; (int (*)()) &lt;br&gt; casts this to a pointer to function returning int. The leftmost *
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/07b10dfc97169023?show_docid=07b10dfc97169023</guid>
  <author>
  gene.ress...@gmail.com
  (Gene)
  </author>
  <pubDate>Sat, 20 Mar 2010 01:18:01 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/844fcf0565abf25b?show_docid=844fcf0565abf25b</link>
  <description>
  Thread drift warning... &lt;br&gt; My (non-parity-checked) memory tells me that there was a code block in the &lt;br&gt; MFT-1 (OS/360 release 14 or maybe 13) nucleus that had register equates &lt;br&gt; named the traditional Rn (0 &amp;lt;= n &amp;lt;= 15), &lt;br&gt; but with Rn set equal to a value other than n. I *think* it was in the FLIH &lt;br&gt; (First-Level Interrupt Handler), in code assembled at sysgen. I always
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/844fcf0565abf25b?show_docid=844fcf0565abf25b</guid>
  <author>
  j.c.mor...@verizon.net
  (Joe Morris)
  </author>
  <pubDate>Sat, 20 Mar 2010 01:11:04 UT
</pubDate>
  </item>
  <item>
  <title>Re: Implementing strstr</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/a3fe05ab352d5774/90bbb73c3e24cdc0?show_docid=90bbb73c3e24cdc0</link>
  <description>
  Thanks, very interesting link and &amp;quot;esoteric&amp;quot; programming language.
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/a3fe05ab352d5774/90bbb73c3e24cdc0?show_docid=90bbb73c3e24cdc0</guid>
  <author>
  spinoza1...@yahoo.com
  (spinoza1111)
  </author>
  <pubDate>Sat, 20 Mar 2010 01:07:44 UT
</pubDate>
  </item>
  <item>
  <title>Re: Implementing strstr</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/a3fe05ab352d5774/51e044bf063210b7?show_docid=51e044bf063210b7</link>
  <description>
  The first two releases had a bug: after a one character &amp;quot;handle&amp;quot; is &lt;br&gt; found we set the ptrIndex to the master string at one past the handle: &lt;br&gt; this is incorrect, for the start of the main loop will then search for &lt;br&gt; the first character of the NEXT occurence, missing the overlapping &lt;br&gt; occurence. &lt;br&gt; Here is the corrected code.
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/a3fe05ab352d5774/51e044bf063210b7?show_docid=51e044bf063210b7</guid>
  <author>
  spinoza1...@yahoo.com
  (spinoza1111)
  </author>
  <pubDate>Sat, 20 Mar 2010 01:06:56 UT
</pubDate>
  </item>
  <item>
  <title>Re: Cryptic Syntax</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/894b0cccc03aae7a?show_docid=894b0cccc03aae7a</link>
  <description>
  Lets break it down. The expression is in two parts: &lt;br&gt; (*(int(*)())*(int*)(z)) (x,y) &lt;br&gt; That is the form of a function call. The complex expression should &lt;br&gt; result in a pointer to a function (all C functions are called as if &lt;br&gt; through a pointer to them) and the arguments x and y are passed to it. &lt;br&gt; So what of the function part? It consists of four operators applied to
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/894b0cccc03aae7a?show_docid=894b0cccc03aae7a</guid>
  <author>
  ben.use...@bsb.me.uk
  (Ben Bacarisse)
  </author>
  <pubDate>Sat, 20 Mar 2010 00:59:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: Has thought been given given to a cleaned up C? Possibly called C+.</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/5954dc70a43f9f8e/fb0d8aa35acffb72?show_docid=fb0d8aa35acffb72</link>
  <description>
  &amp;lt;snip&amp;gt; &lt;br&gt; &amp;lt;snip&amp;gt; &lt;br&gt; A &amp;quot;security&amp;quot; library proposal that include function that it recommends &lt;br&gt; you don&#39;t use? Seems plain stupid to me. &lt;br&gt; &amp;lt;snip&amp;gt; &lt;br&gt; Maybe they&#39;ve improved a few, and on the next version they will improve &lt;br&gt; a few more (or remove the ones needing removal)?
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/5954dc70a43f9f8e/fb0d8aa35acffb72?show_docid=fb0d8aa35acffb72</guid>
  <author>
  s...@spam.causeway.com
  (Flash Gordon)
  </author>
  <pubDate>Sat, 20 Mar 2010 00:55:18 UT
</pubDate>
  </item>
  <item>
  <title>Re: Killfile troll &quot;Phil Carmody&quot;.</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/bf4e0288d8537985/584ad0274d3e8d50?show_docid=584ad0274d3e8d50</link>
  <description>
  On Fri, 19 Mar 2010 23:13:51 +0100 &lt;br&gt; Me too. I don&#39;t use anything with word &amp;quot;kill&amp;quot; in it ;) &lt;br&gt; Exactly! you don;t have to read. &lt;br&gt; Greets!
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/bf4e0288d8537985/584ad0274d3e8d50?show_docid=584ad0274d3e8d50</guid>
  <author>
  bm...@hotmail.com
  (Branimir Maksimovic)
  </author>
  <pubDate>Sat, 20 Mar 2010 00:54:56 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/adead30c10eea6da?show_docid=adead30c10eea6da</link>
  <description>
  Well, in C99 there certainly is: &lt;br&gt; Just write &amp;quot;#include &amp;lt;stdint.h&amp;gt;&amp;quot; at the top of your source file, and &lt;br&gt; you can use int32_t (if it&#39;s available). That&#39;s why the C99 standard &lt;br&gt; added it to the language. &lt;br&gt; Why does it matter how ugly the implementation of &amp;lt;stdint.h&amp;gt; is, as &lt;br&gt; long as it works? *You* don&#39;t have to write it, or even read it.
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/adead30c10eea6da?show_docid=adead30c10eea6da</guid>
  <author>
  ks...@mib.org
  (Keith Thompson)
  </author>
  <pubDate>Sat, 20 Mar 2010 00:08:42 UT
</pubDate>
  </item>
  <item>
  <title>Cryptic Syntax</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/d10e49492e0547d4?show_docid=d10e49492e0547d4</link>
  <description>
  Can anybody explain what&#39;s going on in the extremely cryptic syntax &lt;br&gt; found in the return statement below? Based on observed program &lt;br&gt; functionality, it appears this statement directly launches a program &lt;br&gt; (that was created in memory during the /*create a program in memory &lt;br&gt; before returning*/ section) after main exits, but how?
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/3c0bd77fdf5ec98c/d10e49492e0547d4?show_docid=d10e49492e0547d4</guid>
  <author>
  liamym...@yahoo.com
  (WD)
  </author>
  <pubDate>Sat, 20 Mar 2010 00:09:12 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/bd9819362c00ccb3?show_docid=bd9819362c00ccb3</link>
  <description>
  Not really. &lt;br&gt; The goal is not to mandate the availability of every conceivable size, but &lt;br&gt; rather, to allow people to indicate which sizes the machine has. &lt;br&gt; Sure. And if C&#39;s intent were to require that a &amp;quot;4-byte&amp;quot; integer type MUST &lt;br&gt; exist, something more like that might well have been used. &lt;br&gt; I think the current division is about right for C -- we don&#39;t want to mandate
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/bd9819362c00ccb3?show_docid=bd9819362c00ccb3</guid>
  <author>
  usenet-nos...@seebs.net
  (Seebs)
  </author>
  <pubDate>Fri, 19 Mar 2010 23:46:07 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/0e1243eb3cec557d?show_docid=0e1243eb3cec557d</link>
  <description>
  [other groups dropped] &lt;br&gt; (The files (inttypes.h and stdint.h anyway) appear to be LF-delimited. So in &lt;br&gt; Internet Explorer 7, they appear as one giant, monolithic block of text &lt;br&gt; (you&#39;d think software that sophisticated would be able to cope with &lt;br&gt; LF-newlines...)) &lt;br&gt; The contents of the files, well, starting with stdint.h: I&#39;d only ever seen
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/0e1243eb3cec557d?show_docid=0e1243eb3cec557d</guid>
  <author>
  ba...@freeuk.com
  (bartc)
  </author>
  <pubDate>Fri, 19 Mar 2010 23:40:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/2af141b1b486c502?show_docid=2af141b1b486c502</link>
  <description>
  Actually, I wrote part of DMPALL. Specifically the code that added &lt;br&gt; conditional criteria for record extraction. DMPALL was developed by several &lt;br&gt; engineers over a 20 year time frame. (Although I didn&#39;t keep a listing &lt;br&gt; of DMPALL, and don&#39;t recall the gocart stuff; not having seen the source &lt;br&gt; since 1986).
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/2af141b1b486c502?show_docid=2af141b1b486c502</guid>
  <author>
  sc...@slp53.sl.home
  (Scott Lurndal)
  </author>
  <pubDate>Fri, 19 Mar 2010 23:35:46 UT
</pubDate>
  </item>
  <item>
  <title>Re: Idiotic programming style edicts</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/c1b7168d424e368e?show_docid=c1b7168d424e368e</link>
  <description>
  Line by line comments can be interesting. I think it was the &lt;br&gt; Burroughs Medium Systems dumpall program that, if you read closely, &lt;br&gt; would find a treatise on go carts. I don&#39;t remember if it was &lt;br&gt; written by one author, or a back and forth between several :-) &lt;br&gt; /\/\arc
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/99bc3aa427fc7518/c1b7168d424e368e?show_docid=c1b7168d424e368e</guid>
  <author>
  m...@snafu.org
  (Marco S Hyman)
  </author>
  <pubDate>Fri, 19 Mar 2010 23:00:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: Killfile troll &quot;Phil Carmody&quot;.</title>
  <link>http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/bf4e0288d8537985/bb1c351a9c3d6b82?show_docid=bb1c351a9c3d6b82</link>
  <description>
  Robbie Hatley a écrit : &lt;br&gt; Look, I have never &amp;quot;killfiled&amp;quot; anyone. &lt;br&gt; I just don&#39;t read what carmody writes, and that is much easier. Why bother?
  </description>
  <guid isPermaLink="true">http://groups.google.co.id/group/comp.lang.c/browse_thread/thread/bf4e0288d8537985/bb1c351a9c3d6b82?show_docid=bb1c351a9c3d6b82</guid>
  <author>
  ja...@nospam.org
  (jacob navia)
  </author>
  <pubDate>Fri, 19 Mar 2010 22:13:51 UT
</pubDate>
  </item>
  </channel>
</rss>
