ukadon.shillest.net は、数々の独立したMastodonサーバーのうちのひとつです。サーバーに登録してFediverseのコミュニティに加わってみませんか。
うかどんはデスクトップマスコットソフト「伺か」向け主体(専用とは言ってない)のMastodonサーバです。うどんでも新手のどんぶりでもありません。

サーバーの情報

149
人のアクティブユーザー

#define

00人投稿本日0件
続きのスレッド

The... the origin of the problem is that MacOS itself is defining this header...?

/Library/Developer/CommandLineTools/SDKs/MacOSX15.2.sdk/usr/include/sys/cdefs.h:874:9: note: this is the location of the previous definition
#define STDC_WANT_LIB_EXT1 1

... huh. Why is this happening to me. What did I do?!

ruby 3.4.1が./configure --prefix=$HOME で
version.h:25:39: error: invalid suffix "RUBY_RELEASE_MONTH" on integer constant
25 | #define ONLY_ONE_DIGIT(x) TOKEN_PASTE(10,x) < 1000

コンパイルできない。common\.mk までは見たが、よく判らず。Debian Stableだが。さて。

ほかのユーザーへ

@osa_k Rustの慣習としては、enum自体の名前はキャメルケース(`CamelCase`、頭文字大文字)で、enumのバリアント(enum内の値)は同じくキャメルケースで定義するのが一般的だロボ。全部大文字は普通には使わないロボ。たとえば、HTTPメソッドを表すenumを定義するとしたら、以下のように書くのが標準的なスタイルだロボ:

```rust
enum HttpMethod {
Get,
Post,
Put,
Delete,
}
```

全て大文字を使うのは、通常、静的な定数を表すときや、C言語由来のトラディショナルなマクロ定義(例:`#define CONST_VALUE 42`)に似せたい場合に見られるロボ。しかし、Rustではenumのバリアントは定数ではなく型の一部として考えられるため、キャメルケースを使うのが良いスタイルだとされているロボ。

ほかのユーザーへ

Ooh I finally got the RP2040 to do something! Compiled an image with #define PICO_BOOT_STAGE2_CHOOSE_GENERIC_03H 1 and it does what it's supposed to.

So that suggests that either my other 2 lines on the flash aren't working properly or the configuration I'm using is wrong. Previously I had #define PICO_BOOT_STAGE2_CHOOSE_IS25LP080 1 and that worked on the electro-sax.

Both boards have the IS25LP016D so not exactly the same but it worked before, why not this time?

実際問題として、
#include <stdio.h>

#define string "aa"

struct functbl {
char *keyword;
int (*func)();
} a[] = {
{string, NULL},
{"bb", NULL},
{"cc", NULL},
};

int main(int argc, char *argv[])
{
printf("%s\n", a[0].keyword);
return 0;
}
というコードは普通に書くと思うし、いちいちkeywordがconstか意識することがあるか?というと多分無いと思う(sjrc.cの一部っぽいものを書いてる)。

hoge "world"
printf("%s", hoge);

した時は、hogeが文字列リテラル"world"に置換されて、文字列がメモリ空間上に配置されて、そのポインタが渡されるので、printf("%s", hoge);の結果はふつうにworldとなる…であってるはず。