# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/sw7324q
詳解 C 語言:掌握指向函數的指針**
函數指針是 C 語言中的一個重要概念,它允許程序員將函數作爲參數傳遞、賦值給變量,或者作爲函數的返回值。這種機制爲高級編程技術如回調函數、函數表、函數指針數組等提供了基礎。函數指針的定義函數指針的聲明形式爲:returntype (functionpointername)(parameter list);其中,returntype 是函數返回值的類型,functionpointername 是函數 ⌘ Read more