关于catopen函数:

参考网址:http://pubs.opengroup.org/onlinepubs/009695399/functions/catopen.html

1)编辑消息文件

[root@Master catlogTest]# vi msg1.euc

1 Hello msg1.euc 1

2 Hello msg2.euc 2

3 Hello msg3.euc 3

4 Hello msg4.euc 4

[root@Master catlogTest]# vi msg1.sjis

1 Hello msg1.sjis 1

2 Hello msg2.sjis 2

3 Hello msg3.sjis 3

4 Hello msg4.sjis 4

2)用gencat生成cat文件

[root@Master catlogTest]# gencat msg1.euc.cat msg1.euc

[root@Master catlogTest]# ls

msg1.euc  msg1.euc.cat  msg1.sjis

[root@Master catlogTest]# gencat msg2.sjis.cat msg1.sjis

[root@Master catlogTest]# ls

msg1.euc  msg1.euc.cat  msg1.sjis  msg2.sjis.cat

3)使用catopen等函数调用消息

#include <stdio.h>

#include <locale.h>

#include <nl_types.h>

int main()

{

nl_catd catid = NULL;

char *fstr;

char *s1;

setlocale(LC_ALL,"");

catid = catopen("/root/honglihua/catlogTest/msg1.euc.cat",NL_CAT_LOCALE);

if((int)catid == -1)

{

fprintf(stdout,":Can't open message catlog");

return -1;

}

fstr = (char *)catgets(catid,1,1,"default string");

fprintf(stdout,"%s\n",fstr);

catclose(catid);

return 0;

}

编译:

[root@Master catlogTest]# gcc -o catopenTest catopenTest.c

执行:

[root@Master catlogTest]# ./catopenTest

Hello msg1.euc 1

如果

fstr = (char *)catgets(catid,1,2,"default string");

执行结果为:

[root@Master catlogTest]# ./catopenTest

Hello msg2.euc 2

如果catopen第一个参数不带路径,则可以设置NLSPATH环境变量如下:
setenv NLSPATH /usr/lib/locale/%L/LC_MESSAGES/%N
(%L会被$LANG代替;%N会被catopen中的hello代替)
在调用:
catopen("hello", NL_CAT_LOCALE)时,
会去/usr/lib/locale/en_US/LC_MESSAGES/hello
这个路径寻找消息文件

补充:

经过测试,得出当catopen的满足如下条件值时, %L会按照LC_ALL > LC_MESSAGES > LANG的优先值顺序进行替换。

1)catopen的第一个参数不为路径

2)catopen的第二个参数为NL_CAT_LOCALE(如果第二个参数为0,%L会被$LANG代替)

3)设置了环境变量NLSPATH,且该变量所指的路径中使用%L

关于catopen函数的更多相关文章

  1. Python 小而美的函数

    python提供了一些有趣且实用的函数,如any all zip,这些函数能够大幅简化我们得代码,可以更优雅的处理可迭代的对象,同时使用的时候也得注意一些情况   any any(iterable) ...

  2. 探究javascript对象和数组的异同,及函数变量缓存技巧

    javascript中最经典也最受非议的一句话就是:javascript中一切皆是对象.这篇重点要提到的,就是任何jser都不陌生的Object和Array. 有段时间曾经很诧异,到底两种数据类型用来 ...

  3. JavaScript权威指南 - 函数

    函数本身就是一段JavaScript代码,定义一次但可能被调用任意次.如果函数挂载在一个对象上,作为对象的一个属性,通常这种函数被称作对象的方法.用于初始化一个新创建的对象的函数被称作构造函数. 相对 ...

  4. C++对C的函数拓展

    一,内联函数 1.内联函数的概念 C++中的const常量可以用来代替宏常数的定义,例如:用const int a = 10来替换# define a 10.那么C++中是否有什么解决方案来替代宏代码 ...

  5. 菜鸟Python学习笔记第一天:关于一些函数库的使用

    2017年1月3日 星期二 大一学习一门新的计算机语言真的很难,有时候连函数拼写出错查错都能查半天,没办法,谁让我英语太渣. 关于计算机语言的学习我想还是从C语言学习开始为好,Python有很多语言的 ...

  6. javascript中的this与函数讲解

    前言 javascript中没有块级作用域(es6以前),javascript中作用域分为函数作用域和全局作用域.并且,大家可以认为全局作用域其实就是Window函数的函数作用域,我们编写的js代码, ...

  7. 复杂的 Hash 函数组合有意义吗?

    很久以前看到一篇文章,讲某个大网站储存用户口令时,会经过十分复杂的处理.怎么个复杂记不得了,大概就是先 Hash,结果加上一些特殊字符再 Hash,结果再加上些字符.再倒序.再怎么怎么的.再 Hash ...

  8. JS核心系列:浅谈函数的作用域

    一.作用域(scope) 所谓作用域就是:变量在声明它们的函数体以及这个函数体嵌套的任意函数体内都是有定义的. function scope(){ var foo = "global&quo ...

  9. C++中的时间函数

    C++获取时间函数众多,何时该用什么函数,拿到的是什么时间?该怎么用?很多人都会混淆. 本文是本人经历了几款游戏客户端和服务器开发后,对游戏中时间获取的一点总结. 最早学习游戏客户端时,为了获取最精确 ...

随机推荐

  1. python--nolocal

    Compare this, without using nonlocal: x = 0def outer(): x = 1 def inner(): x = 2 print("inner:& ...

  2. pycloudtag_wordcloud 中英文标签云

    https://study.163.com/course/courseMain.htm?courseId=1006383008&share=2&shareId=400000000398 ...

  3. Win10删除文件显示删除确认对话框

    1.右键单击“回收站”图标:2.在弹出属性窗口中,点击“属性”选项:3.在“回收站”窗口中,在选项“显示删除确认对话框”前面打钩,并单击“确定”按钮:

  4. Dao操作的抽取

    package com.loaderman.demo.c_jdbc; public class Admin { private int id; private String userName; pri ...

  5. 微信小程序开发工具下载以及安装教程

    微信公众平台上登录你的微信小程序账号   登录进入小程序开发-工具-下载,再根据你的系统选择相对应的版本地址进行下载.   以管理员身份运行下载,点击下一步,如图所示:   下一步,就会出现许可证协议 ...

  6. 联想 ThinkPad 笔记本 Fn 键 关闭与启用方法

    联想 ThinkPad 笔记本 Fn 键 关闭与启用方法 [最快捷的方式] 按 Fn + Esc 键,进行切换启用或者关闭 Fn 功能键 So easy!!! ^_^

  7. mingw32-gcc-9.2.1-i686-posix-sjlj-20190904-8ba5c53

    gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=d:/msys/mingw32/bin/../libexec/gcc/ ...

  8. python中接受上一条命令执行的结果----subprocess.check_output()

    subprocess.call 是不能作为赋值的,需要用到 subprocess.check_output 函数,而且如果要引用赋值就必须使用subprocess.call(['echo',line] ...

  9. [LeetCode] 697. Degree of an Array 数组的度

    Given a non-empty array of non-negative integers nums, the degree of this array is defined as the ma ...

  10. 【POJ - 3984】迷宫问题(dfs)

    -->迷宫问题 Descriptions: 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0 ...