<p><a href="https://github.com/b4n" class="user-mention">@b4n</a> Thanks for reminding me about <code>stdin</code>, I read the docs but must have spaced it.</p>
<p>This capped only the first letter of the selection of course, but it worked. I'll just have to add a couple lines to make it cap the first letter of each word. Thanks!</p>
<pre><code>#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(int argc, char **argv)
{
char word[80];
if (fgets (word, sizeof (word), stdin) != NULL)
{
word[0] = toupper (word[0]);
fprintf (stdout, "%s ", word);
return 0;
}
return 1;
}
</code></pre>
<blockquote>
<p>BTW, if you got Python installed, you could simply do: python3 -c 'from sys import stdin, stdout; stdout.write(stdin.read().title())' (I recommend using Python 3.x that doesn't need extra care to properly handle Unicode input here)</p>
</blockquote>
<p>I don't know much python. You're saying I could accomplish what I want just using the code you provided?</p>
<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/geany/geany/issues/1037#issuecomment-255216415">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABDrJ_JChKYkSoLA6gM1HxJvUsOz6o0Yks5q18zHgaJpZM4IejnE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJy8IcwL_0lwhc7jH13Y_4UcK_lmsks5q18zHgaJpZM4IejnE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" href="https://github.com/geany/geany/issues/1037#issuecomment-255216415"></link>
<meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>
<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/geany/geany","title":"geany/geany","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/geany/geany"}},"updates":{"snippets":[{"icon":"PERSON","message":"@andy5995 in #1037: @b4n Thanks for reminding me about `stdin`, I read the docs but must have spaced it.\r\n\r\nThis capped only the first letter of the selection of course, but it worked. I'll just have to add a couple lines to make it cap the first letter of each word. Thanks!\r\n```\r\n#include \u003cstdio.h\u003e\r\n#include \u003cstring.h\u003e\r\n#include \u003cctype.h\u003e\r\n\r\nint main(int argc, char **argv)\r\n{\r\n char word[80];\r\n\r\n if (fgets (word, sizeof (word), stdin) != NULL)\r\n {\r\n word[0] = toupper (word[0]);\r\n fprintf (stdout, \"%s \", word);\r\n return 0;\r\n }\r\n\r\n return 1;\r\n}\r\n```\r\n\u003e BTW, if you got Python installed, you could simply do: python3 -c 'from sys import stdin, stdout; stdout.write(stdin.read().title())' (I recommend using Python 3.x that doesn't need extra care to properly handle Unicode input here)\r\n\r\nI don't know much python. You're saying I could accomplish what I want just using the code you provided?"}],"action":{"name":"View Issue","url":"https://github.com/geany/geany/issues/1037#issuecomment-255216415"}}}</script>