Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.c > #391541
| Path | csiph.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!eternal-september.org!.POSTED!not-for-mail |
|---|---|
| From | Michael S <already5chosen@yahoo.com> |
| Newsgroups | comp.lang.c |
| Subject | Re: Suggested method for returning a string from a C program? |
| Date | Sun, 23 Mar 2025 14:12:37 +0200 |
| Organization | A noiseless patient Spider |
| Lines | 84 |
| Message-ID | <20250323141237.00000b2e@yahoo.com> (permalink) |
| References | <vrd77d$3nvtf$2@dont-email.me> <20250319115550.0000676f@yahoo.com> <vreuj1$1asii$4@dont-email.me> <vreve4$19klp$2@dont-email.me> <20250319201903.00005452@yahoo.com> <86r02roqdq.fsf@linuxsc.com> <vrh1br$35029$2@dont-email.me> <LRUCP.2$541.0@fx47.iad> <vrh71t$3be42$1@dont-email.me> <874izntt5t.fsf@nosuchdomain.example.com> <vrhviu$h5c$1@dont-email.me> <87ecyrs332.fsf@nosuchdomain.example.com> <vri9t1$a29t$1@dont-email.me> <20250320171505.221@kylheku.com> <vrif1v$c9ev$3@dont-email.me> <8734f7rw7z.fsf@nosuchdomain.example.com> <vrjjvb$1esjh$1@dont-email.me> <87tt7mqk7w.fsf@nosuchdomain.example.com> <vrkvt5$2k04q$2@dont-email.me> <87cye9afl0.fsf@nosuchdomain.example.com> <vrmckn$114k$1@dont-email.me> <871puoag2q.fsf@nosuchdomain.example.com> <vrnoft$15f6n$1@dont-email.me> <20250323105043.00000db2@yahoo.com> <vror2q$28ivi$1@dont-email.me> |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | quoted-printable |
| Injection-Date | Sun, 23 Mar 2025 13:12:39 +0100 (CET) |
| Injection-Info | dont-email.me; posting-host="5138e472ad1225bef955c3868b1c8628"; logging-data="2466192"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Q9ap2cvGDXuhDkuJKcxeoawSS93hA240=" |
| Cancel-Lock | sha1:cSazfYuEpgMDOjH6BccwyoK6KNU= |
| X-Newsreader | Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-w64-mingw32) |
| Xref | csiph.com comp.lang.c:391541 |
Show key headers only | View raw
On Sun, 23 Mar 2025 11:25:14 +0000
bart <bc@freeuk.com> wrote:
> On 23/03/2025 08:50, Michael S wrote:
> > On Sun, 23 Mar 2025 01:34:54 +0000
> > bart <bc@freeuk.com> wrote:
> >
> >>
> >> It's strange: in one part of the computing world, the speed of
> >> building software is a very big deal. All sorts of efforts are
> >> going on to deal with it. Compilation speed for developers is
> >> always an issue. There is a general movement away from LLVM-based
> >> backends /because/ it is so slow.
> >>
> >
> > What "general movement" are you talking about?
> > I can't recollect any new* language for general-purpose computers
> > that is used by more than dozen* persons which is not based on LLVM
> > back end. Despite its undeniable slowness.
>
> There's Rust + Cranelift:
>
> "The goal of this project is to create an alternative codegen backend
> for the rust compiler based on Cranelift. This has the potential to
> improve compilation times in debug mode."
>
It looks like a schism. Since Rust is sort of religious movement,
schisms are inevitable part of it.
> There's Go which was never based on LLVM:
>
> "At the beginning of the project we considered using LLVM for gc but
> decided it was too large and slow to meet our performance goals."
>
> ('gc' is 'Go Compiler'. Maybe Go is older than 15 years?
Yes, it is. 17+.
> Still, LLVM
> seems to have been around
In 2007 LLVM was formally 7 y.o. but until 2005 it was a tiny project
with very little (or none?) payed workforce. I can't say it with
certainty, but it seems that LLVM didn't really become usable until
2008-2009.
> and was thought to be slow then.)
>
gollvm certainly exists and works.
Users that want to use go on something other than very few platforms
supported by Google's "self hosted" implementation appear to have two
main choices: gogcc and gollvm. I don't know which is chosen more often.
> And there's Zig:
>
Isn't current distribution of Zig based on LLVM?
Just wondering, the chance that Zig will fly by now approaches zero.
> https://news.ycombinator.com/item?id=39154513
>
> There are other's comments:
>
> "LLVM used to be hailed as a great thing, but with language projects
> such as Rust, Zig and others complaining it's bad and slow and
> they're moving away from it – how bad is LLVM really?"
>
> Here's is a random quote from Reddit:
>
> "2 minutes is really good for a full build. 2 minutes is pretty bad
> for a one line change.
>
> I also quit my job recently because of their terrible infrastructure.
> All home-grown of course. A horrible mess of Python, C++ and Make.
>
> So demotivating. And nobody except me cared."
>
> TBH, for me 2 minutes would be really terrible even for a full build.
> So would 2 seconds! (How big was this executable?)
>
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar
Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-18 21:38 -0400
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-18 19:05 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-18 19:22 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-18 22:43 -0400
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-18 20:11 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-18 20:07 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-18 23:34 -0400
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 04:01 +0000
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 00:38 -0400
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-18 22:27 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 13:23 -0400
Re: Suggested method for returning a string from a C program? James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-19 13:40 -0400
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-19 11:56 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 15:06 -0400
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-19 12:52 -0700
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 11:55 +0200
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 13:23 -0400
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 17:38 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 20:19 +0200
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 19:03 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 05:09 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 12:23 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-20 13:36 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 14:00 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-20 14:32 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 15:11 +0000
Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 16:37 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-24 16:14 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 17:20 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-24 21:56 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 08:45 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-25 09:08 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 19:55 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 09:18 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 08:39 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-25 03:51 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-25 13:11 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-25 05:02 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-25 16:33 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 20:04 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 09:23 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:31 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 09:34 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 02:59 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 12:33 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 15:59 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:37 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 12:38 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 22:53 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 15:15 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-27 10:11 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-29 18:25 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-29 18:20 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-30 01:39 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Alan Mackenzie <acm@muc.de> - 2025-03-31 17:15 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-31 19:48 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-31 21:14 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-31 14:56 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-26 14:07 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 17:58 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-26 14:20 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 12:42 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 17:36 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-27 13:48 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-27 18:31 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-29 10:14 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-29 16:39 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-29 21:02 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-27 12:31 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-27 20:06 +0000
Newsgroup etiquette Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-28 11:03 -0700
Re: Newsgroup etiquette Richard Heathfield <rjh@cpax.org.uk> - 2025-03-28 18:39 +0000
Re: Newsgroup etiquette Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-28 18:45 +0000
Re: Newsgroup etiquette Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-04-27 12:28 -0700
Re: Newsgroup etiquette Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-04-27 14:40 -0700
Re: Newsgroup etiquette Ethan Carter <ec1828@somewhere.edu> - 2025-04-28 00:59 -0300
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 15:58 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-25 19:09 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-25 17:34 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 19:49 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-25 12:53 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:39 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2026-02-07 00:04 -0800
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-25 13:23 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 09:50 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 16:22 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-25 18:18 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 19:55 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:41 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 23:35 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 16:38 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-25 19:55 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 10:00 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-26 16:01 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 14:45 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-26 17:16 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-26 08:55 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:45 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 17:22 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 17:19 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:40 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 17:25 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 21:27 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 20:34 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 13:50 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 21:04 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 14:12 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-26 21:18 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-26 23:22 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-26 14:38 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 18:52 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:32 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) antispam@fricas.org (Waldek Hebisch) - 2025-03-26 22:29 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-26 14:31 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 21:33 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-28 15:42 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-25 19:52 -0400
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 17:16 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-25 04:55 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:48 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-25 21:52 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 22:36 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-03-25 23:14 +0000
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 10:09 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-05-03 20:03 -0700
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-05-04 14:04 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-05-04 15:43 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-05-04 18:39 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Richard Heathfield <rjh@cpax.org.uk> - 2025-05-04 19:02 +0100
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-05-05 11:29 +0200
Re: Integral types and own type definitions (was Re: Suggested method for returning a string from a C program?) Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-05-15 23:02 -0700
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 14:50 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 16:59 +0200
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 15:16 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 17:29 +0200
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 15:55 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 11:01 +0200
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-23 12:56 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 11:47 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 12:28 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 15:40 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 15:57 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 20:46 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 19:15 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-20 19:58 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 22:57 +0200
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-20 21:10 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 16:10 -0700
The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 16:59 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-24 15:57 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-25 10:38 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 16:31 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-25 19:23 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:14 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-25 23:50 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 10:33 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 19:18 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-25 18:50 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 20:45 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-25 23:30 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 14:59 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 11:29 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 15:08 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:50 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 19:09 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 21:39 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-26 23:21 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-26 23:51 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-27 00:32 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-27 13:51 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) antispam@fricas.org (Waldek Hebisch) - 2025-03-27 01:10 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-27 01:33 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-27 10:54 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-27 14:09 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) antispam@fricas.org (Waldek Hebisch) - 2025-03-28 17:49 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-27 14:07 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-27 03:24 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-27 11:14 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) scott@slp53.sl.home (Scott Lurndal) - 2025-03-27 14:14 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 02:05 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-28 10:13 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 11:22 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-28 14:32 +0300
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 13:42 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-28 11:37 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 13:53 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-28 13:00 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 14:06 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-28 10:05 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-28 12:19 +0000
[OT] PC hardware prices [correction] (was Re: The integral type 'byte') Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-31 21:35 +0200
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-27 15:04 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 02:59 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-27 19:03 -0700
[OT] SPARC (was Re: The integral type 'byte') Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 03:26 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-27 23:14 -0700
Re: [OT] SPARC (was Re: The integral type 'byte') Michael S <already5chosen@yahoo.com> - 2025-03-28 13:26 +0300
Re: [OT] SPARC (was Re: The integral type 'byte') David Brown <david.brown@hesbynett.no> - 2025-03-28 13:08 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') Michael S <already5chosen@yahoo.com> - 2025-03-28 15:20 +0300
Re: [OT] SPARC (was Re: The integral type 'byte') David Brown <david.brown@hesbynett.no> - 2025-03-28 15:33 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-28 10:26 -0700
Re: [OT] SPARC (was Re: The integral type 'byte') "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-28 10:27 -0700
Re: [OT] SPARC (was Re: The integral type 'byte') Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-28 18:44 +0000
Re: [OT] SPARC (was Re: The integral type 'byte') Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-28 17:46 +0000
Re: [OT] SPARC (was Re: The integral type 'byte') Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-28 17:45 +0000
Re: [OT] SPARC (was Re: The integral type 'byte') Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 13:20 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') Michael S <already5chosen@yahoo.com> - 2025-03-28 15:56 +0300
Re: [OT] SPARC (was Re: The integral type 'byte') Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 14:20 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') David Brown <david.brown@hesbynett.no> - 2025-03-28 15:43 +0100
Re: [OT] SPARC (was Re: The integral type 'byte') Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-28 17:54 +0000
Re: [OT] SPARC (was Re: The integral type 'byte') "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-28 10:16 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-28 11:03 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-28 14:01 +0300
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-28 11:29 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 12:46 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-28 12:30 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 11:10 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-26 11:02 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 12:47 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) bart <bc@freeuk.com> - 2025-03-26 13:12 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 14:48 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 15:40 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 18:29 +0000
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 15:22 +0100
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-26 13:09 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-25 13:16 -0700
Re: The integral type 'byte' (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 11:33 +0100
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 12:22 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 12:10 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 20:59 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 16:18 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-20 23:55 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-21 00:46 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-21 01:23 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 18:47 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-21 11:53 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-21 12:04 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 00:23 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-21 20:50 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 13:06 +0000
Re: Suggested method for returning a string from a C program? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-22 14:51 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-22 14:52 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-23 01:34 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 10:50 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-23 11:25 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 14:12 +0200
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-24 12:51 +0100
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 14:07 +0000
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-24 15:32 +0100
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-24 15:00 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-24 17:22 +0200
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-24 16:12 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 16:02 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-24 16:17 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 16:49 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-24 16:56 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 18:20 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-25 08:40 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 11:09 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-25 14:46 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 15:04 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-25 15:09 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 16:40 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-26 09:20 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-26 10:07 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 18:06 +0000
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-27 00:22 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-27 14:22 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-27 10:54 -0700
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-28 16:13 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-28 16:40 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-28 20:41 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-28 22:18 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-28 15:33 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-28 22:48 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-28 16:53 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-29 00:32 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-28 18:50 -0700
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-29 16:24 +0000
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-29 13:37 +0100
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-29 16:33 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-29 17:23 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-29 18:11 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-28 10:57 -0700
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-25 16:16 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-25 13:29 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 14:58 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-25 17:14 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 16:37 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-25 19:00 +0200
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-24 17:15 +0000
Code-change-to-run times (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 18:44 +0100
Re: Code-change-to-run times (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-24 23:06 +0200
Re: Code-change-to-run times (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 23:44 +0100
Re: Code-change-to-run times (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-25 13:00 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 21:16 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-25 08:41 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 11:04 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-25 14:43 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-25 13:51 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 14:22 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-24 17:10 +0200
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-24 19:07 +0100
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-24 15:44 +0000
Re: Suggested method for returning a string from a C program? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-24 11:27 -0700
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-24 20:13 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-24 23:01 +0200
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 11:17 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-24 15:42 +0000
Re: Suggested method for returning a string from a C program? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-24 11:27 -0700
Compiler speed (ad nauseam) (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-24 18:01 +0100
Re: Suggested method for returning a string from a C program? James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-24 19:25 -0400
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-25 00:53 +0000
Re: Suggested method for returning a string from a C program? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-24 19:00 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-24 21:50 -0700
Re: Suggested method for returning a string from a C program? Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-25 08:19 +0100
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-22 14:41 +0100
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 11:41 +0200
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-23 14:13 -0700
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 23:19 +0200
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-22 07:05 -0700
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-22 02:37 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 12:20 +0000
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-22 13:50 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 15:47 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 17:00 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-22 15:31 -0700
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-21 17:51 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-21 18:51 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 02:16 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-22 04:15 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-21 21:24 -0700
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-22 14:07 +0000
Fast division (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 02:04 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-25 22:35 -0400
Re: Fast division (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 12:40 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 14:47 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) David Brown <david.brown@hesbynett.no> - 2025-03-26 17:55 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Michael S <already5chosen@yahoo.com> - 2025-03-26 19:36 +0200
Re: Fast division (was Re: Suggested method for returning a string from a C program?) antispam@fricas.org (Waldek Hebisch) - 2025-03-26 13:44 +0000
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 16:19 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) antispam@fricas.org (Waldek Hebisch) - 2025-03-26 02:37 +0000
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-03-26 14:42 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Rosario19 <Ros@invalid.invalid> - 2025-03-26 19:01 +0100
Re: Fast division (was Re: Suggested method for returning a string from a C program?) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-26 18:49 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 00:01 +0000
Re: Suggested method for returning a string from a C program? antispam@fricas.org (Waldek Hebisch) - 2025-03-22 01:41 +0000
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-22 14:22 +0000
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-22 14:32 +0000
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-22 16:25 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 16:35 +0200
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 14:42 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-20 16:20 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 11:33 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 12:07 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-19 12:59 -0700
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 22:12 +0200
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 05:19 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-18 20:26 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 00:42 -0400
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 04:51 +0000
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 01:02 -0400
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 05:23 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 06:06 -0700
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-20 13:27 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-20 16:50 +0200
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 11:24 -0700
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-20 18:53 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 16:56 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-22 16:46 -0700
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-23 08:25 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-23 12:06 +0200
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-23 10:15 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-23 12:35 -0700
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-24 13:09 +0100
Re: Suggested method for returning a string from a C program? Peter 'Shaggy' Haywood <phaywood@alphalink.com.au> - 2025-03-22 19:07 +1100
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-22 13:25 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-22 19:12 +0200
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-22 19:17 +0200
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-22 17:22 +0000
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-22 10:29 -0400
Re: Suggested method for returning a string from a C program? Peter 'Shaggy' Haywood <phaywood@alphalink.com.au> - 2025-03-25 21:41 +1100
Re: Suggested method for returning a string from a C program? scott@slp53.sl.home (Scott Lurndal) - 2025-03-22 14:30 +0000
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-22 11:31 -0400
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-22 19:19 +0200
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-22 14:54 -0700
Re: Suggested method for returning a string from a C program? Ike Naar <ike@sdf.org> - 2025-03-19 07:16 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-19 01:53 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 16:45 -0400
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 21:21 +0000
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-19 21:35 +0000
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-19 14:56 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 22:34 -0400
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-19 19:46 -0700
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 11:25 -0400
Re: Suggested method for returning a string from a C program? bart <bc@freeuk.com> - 2025-03-19 10:15 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 12:40 +0200
Re: Suggested method for returning a string from a C program? David Brown <david.brown@hesbynett.no> - 2025-03-19 17:42 +0100
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 09:03 -0400
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-19 14:40 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 17:39 +0200
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-19 15:42 +0000
Re: Suggested method for returning a string from a C program? Alexis <flexibeast@gmail.com> - 2025-03-22 15:05 +1100
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-22 10:19 +0000
Re: Suggested method for returning a string from a C program? Alexis <flexibeast@gmail.com> - 2025-03-23 11:05 +1100
Re: Suggested method for returning a string from a C program? Muttley@dastardlyhq.com - 2025-03-23 16:22 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-19 13:13 -0700
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 09:50 +0000
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 04:59 -0700
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-20 16:14 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-20 16:29 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-20 16:49 +0000
Re: Suggested method for returning a string from a C program? Muttley@DastardlyHQ.org - 2025-03-21 09:09 +0000
Re: Suggested method for returning a string from a C program? Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-21 17:12 +0000
Re: Suggested method for returning a string from a C program? Michael S <already5chosen@yahoo.com> - 2025-03-19 12:36 +0200
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-19 09:13 -0400
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-20 05:15 -0700
Re: Suggested method for returning a string from a C program? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-20 12:14 -0700
Re: Suggested method for returning a string from a C program? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-21 00:05 -0700
Re: Suggested method for returning a string from a C program? Richard Heathfield <rjh@cpax.org.uk> - 2025-03-21 07:48 +0000
Re: Suggested method for returning a string from a C program? Lynn McGuire <lynnmcguire5@gmail.com> - 2025-03-22 13:32 -0500
Re: Suggested method for returning a string from a C program? DFS <nospam@dfs.com> - 2025-03-23 12:29 -0400
csiph-web